/** * Creates a copy of the object without given fields. * * @param object - The object to remove fields from * @param keys - The field names to remove * @returns The copy of the object without given fields * * @category Object * @public */ export default function omit(object: ObjectType, keys: Key | [Key, ...Key[]]): Omit;