/** * Any validation core module * Provides a validator that accepts any value, useful when a position in a * schema needs to remain wide open while still participating in `object()`, * `union()`, `intersection()`, and other compositional helpers. */ import { type StandardSchemaV1 } from "../../Validate/standardSchema"; /** * Return type produced by an `any` validator. Exposes the literal `"any"` * tag through the `type` field so `ValidateType<"any">` can map it back to * the `any` runtime type when consumed by downstream helpers. */ export interface AnyReturnType { validate: boolean; message: string; type: "any"; } /** * Creates a validator that accepts any value * @returns {Function} - Validator that always succeeds */ export declare const any: () => ((value: any) => AnyReturnType) & StandardSchemaV1;