import { type QRL } from '@builder.io/qwik'; import type { ZodType } from 'zod'; import type { FieldValue, MaybeFunction, ValidateField } from '../types'; /** * See {@link zodField$} */ export declare function zodFieldQrl(schema: QRL>>): QRL>; /** * Creates a validation functions that parses the Zod schema of a field. * * @param schema A Zod schema. * * @returns A validation function. */ export declare const zodField$: (first: MaybeFunction>) => QRL>;