export default class LinkedList { array: any[]; addLast(e: any): void; removeFirst(): any; isEmpty(): boolean; }