export declare function last<T>(x: T[]): T;
export declare function first<T>(x: T[]): T;
export declare function intersperse<T>(array: T[], delim: T): T[];
export declare function isEmpty(col: any[]): boolean;
