import { z } from 'zod/v4'; /** * Generates standard-schema boilerplate code. By default, includes: * * - the contract as defined in github.com/standard-schema/standard-schema. * - some utils for checking if arbitrary values look like standard-schema schemas and errors. * - a function for prettifying standard-schema errors. * - a custom error class for standard-schema errors. * * All parts are optional - and of course you can use this generator to create the boilerplate once, then remove the codegen directives to modify manually */ export declare const standardSchema: import(".").Preset<{ include: z.core.$InferEnumOutput<{ contract: "contract"; errors: "errors"; utils: "utils"; }>[]; }>;