import { z } from "zod"; /** * Extract schema keys from a Zod type */ export declare const zodKeys: (schema: T) => string[]; /** * Get headers from a Zod schema */ export declare const getHeadersFromSchema: (schema: T) => string[]; /** * Validate a row against a schema */ export declare const getRowValidation: >(row: Record, schema: T) => z.SafeParseReturnType;