export declare class LinkedList { private first; private last; add(item: T): void; remove(): T; isEmpty(): boolean; }