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