import { SequentialContainerType } from "../Base/Base"; export declare type LinkListType = { pushFront: (element: T) => void; popFront: () => void; merge: (other: LinkListType) => void; } & SequentialContainerType; declare const _default: new (container?: { forEach: (callback: (element: T) => void) => void; }) => LinkListType; export default _default;