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