import type { ZodType } from "zod"; export declare class BindingSchemaConversionError extends Error { readonly path: string; readonly zodType: string; constructor(path: string, zodType: string, details?: string); } export declare function zodToJsonSchema(schema: ZodType): unknown;