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