type toKeys<A> = Array<(_: A) => string | number>;
export declare function sortWith<A>(fns: toKeys<A>, coll: Array<A>): Array<A>;
export declare function sortWith<A>(fns: toKeys<A>): (_: Array<A>) => Array<A>;
export {};
