import { z } from "zod"; /** * A codec factory that returns a codec that expects a valid JSON string * as input, parses it using JSON.parse, then passes the result to the * provided schema. * * @returns A codec where the first schema is {@link string.json}, and the * second one is the provided input. */ export declare const jsonParse: (schema: S) => z.ZodCodec, S>;