import { type ValidationAdapter, type Infer, type InferIn, type ClientValidationAdapter } from './adapters.js'; import type { TSchema } from 'typebox'; import Type from 'typebox'; /** * Custom TypeBox type for Date for testing purposes. */ export type TDate = Type.TUnsafe; /** * Custom TypeBox type for Date for testing purposes. */ export declare function Date(): TDate; export declare const typebox: (schema: T) => ValidationAdapter, InferIn>; export declare const typeboxClient: (schema: T) => ClientValidationAdapter, InferIn>;