import type { EmptyObject } from './EmptyObject.ts'; /** * Returns a shallow copy of the object with the specified fields removed. * @param obj - The source object. * @param fields - An array of keys to remove. * @returns A new object without the specified fields. */ export declare const removeFields: (obj: T, fields: K[]) => Omit; //# sourceMappingURL=removeFields.d.ts.map