export interface Omitter { (object: T): { [K in Exclude]: T[K]; }; } export declare function omit(...properties: Args): Omitter;