export declare function nth<A>(n: number, coll: A[]): A;
export declare function nth(n: number): <A>(coll: A[]) => A;
export declare function nth(n: number, text: string): string;
