export interface Picker { (object: T): { [K in Extract]: T[K]; }; } export declare function pick(...properties: Args): Picker;