import type { ZodTypeAny, infer as zodInfer } from "zod"; import type { Cell } from "../types"; type ZodReducer> = (acc: zodInfer[], row: TObj) => zodInfer[]; export declare function buildZodReducer>(schema: TSchema): ZodReducer; export {};