/** * Filters for objects. */ export declare const Filters: { /** * Checks if the item is an object. * @param {unknown} item - The item to check. * @returns {boolean} True if the item is an object, false otherwise. */ object: (item: unknown) => boolean; }; /** * Generates an empty value based on a schema. * @param {Record} schema - The schema to generate the empty value from. * @param {boolean} [useDefault=false] - Whether to use the default value defined in the schema. * @returns {T} The generated empty value. */ export declare function generateEmptyValue(schema: Record, useDefault?: boolean): T;