import type { Keys } from "./keys"; /** * Remove keys from an object. This function creates a new object * without the specified keys. The original object is not mutated. * * @param object The original object. * @param keys An array of keys to remove. */ export declare function omit>>(object: Readonly, keys: K): Omit;