import * as core from "@zod/core"; import type * as util from "@zod/core/util"; export declare const parse: (schema: T, value: unknown, _ctx?: core.ParseContext) => core.output; export declare const safeParse: (schema: T, value: unknown, _ctx?: core.ParseContext) => util.SafeParseResult>; export declare const parseAsync: (schema: T, value: unknown, _ctx?: core.ParseContext) => Promise>; export declare const safeParseAsync: (schema: T, value: unknown, _ctx?: core.ParseContext) => Promise>>;