export declare const sortByProperty: <Key extends string>(...keys: Key[]) => <T extends { [K in Key]?: string | undefined; }>(a: T, b: T) => number;
