export declare type Omit = { (properties: string[], obj: T): T[]; (properties: string[]): (obj: T) => T[]; }; export declare const omit: Omit;