import * as z from "zod";
import { TemplateEngine } from "../template-engine";
import { type FormSchema } from "../core";
export declare const isEmpty: (value: any) => boolean;
export declare const buildValidationSchema: (formSchema: FormSchema, templateEngine?: TemplateEngine, getFormState?: () => Record<string, any>) => z.ZodObject<any>;
