export declare function flatten(x̅̅: T[][]): T[]; export declare function counts(x̅: T[]): Map; export declare function zip(x̅: T[], y̅: U[]): [T, U][]; export declare function zipWith(f: (t: T, u: U) => V): (x̅: T[], y̅: U[]) => V[]; export declare function includes(x̅: T[], y̅: T[]): boolean; export declare function eq(x̅: T[], y̅: T[]): boolean; export declare function nth(x̅: T[], n: number): T; export declare function last(x̅: T[]): T;