import { z } from 'zod'; import { Node } from '../../types/index.ts'; declare function identity(this: T): z.ZodPipe>>; declare function node(this: T): z.ZodPipe>>; declare module 'zod' { interface ZodString { identity(): ReturnType>; node(): ReturnType>; } } export {}; //# sourceMappingURL=validate.d.ts.map