import { ZodError } from "zod"; export declare const isServer: boolean; export declare const isClient: boolean; export declare function clientDebug(...args: any): void; export declare function formatZodError(error: ZodError): Record; export declare function recursiveFormatZodErrors(errors: any): Record; export declare function validateZodSchema(schema: any, parserType: "sync"): (values: any) => any; export declare function validateZodSchema(schema: any, parserType: "async"): (values: any) => Promise; export declare function validateZodSchema(schema: any): (values: any) => Promise;