import IList from './IList'; export declare class ArrayList implements IList { private _items; get length(): number; push(...data: T[]): void; merge(data: ArrayList): void; shift(): T | null; bisect(): void; head(): T | null; tail(): T | null; clear(): void; toString(): string; }