//#region src/object/omit.d.ts /** * Creates an object composed of properties that are not omitted * @param obj - The source object * @param keys - The property keys to omit * @returns Returns the new object * @example * const obj = { a: 1, b: 2, c: 3 }; * omit(obj, ['a', 'c']); // { b: 2 } */ declare function omit(obj: T, keys: readonly K[]): Omit; //#endregion export { omit }; //# sourceMappingURL=omit.d.mts.map