import { PlainObject } from "../models.mjs"; //#region src/value/omit.d.ts /** * Create a new object without the specified keys * * @param value Original object * @param keys Keys to omit * @returns Partial object without the specified keys */ declare function omit(value: Value, keys: ValueKey[]): Omit; //#endregion export { omit };