import { z, ZodSchema } from 'zod'; import * as E from 'fp-ts/Either'; import { Option } from 'fp-ts/Option'; import { SchemaParser } from './SchemaParser'; export declare const zodOptionFromNullable: (schema: z.ZodType) => z.ZodType, any, any>; export declare class ZodSchemaParser implements SchemaParser { private readonly schema; constructor(schema: ZodSchema); static fromSchema(schema: ZodSchema): SchemaParser; parse(value: unknown): E.Either; private errorTransformer; } //# sourceMappingURL=ZodSchemaParser.d.ts.map