/** * Creates an object without the specified keys * @param object - The source object * @param keys - The keys to omit * @returns A new object without the specified keys */ export declare const omit: (object: T, ...keys: (keyof T)[]) => Omit;