import { Validator, Component, IValidated } from 'domeleon'; import { ZodType } from 'zod'; declare class ZodValidator extends Validator { schema: ZodType; constructor(form: Component & IValidated, schema: ZodType); protected validateSync(form: Component & IValidated): { property: string; messages: string[]; value: any; }[]; } export { ZodValidator };