import type { Schema } from '../../../schema/index.js'; import { SchemaAction } from '../../../schema/index.js'; import type { ZodFormatter, ZodFormatterOptions } from './formatter/index.js'; import type { ZodParser, ZodParserOptions } from './parser/index.js'; export declare class ZodSchemer extends SchemaAction { static actionName: "zodSchemer"; formatter(options?: OPTIONS): ZodFormatter; parser(options?: OPTIONS): ZodParser; }