import type { AnyObject } from './types'; /** * returns the provided object but with specified keys omitted * @example * omit(['a'], { a: 1, b: 2 }) * // returns { b: 2 } */ export default function omit(keys: readonly K[], obj: T): Omit; //# sourceMappingURL=omit.d.ts.map