/** * @param object the object to omit properties from * @param keys the array of property names to omit * @returns a copy of the object without the omitted properties */ export declare function omit< T extends Record, K extends keyof T >(object: T, keys: K[]): Omit; export default omit;