import type { FieldDefinition } from "./types.js"; export interface ValidationError { field: string; message: string; } export declare function validate(data: Record, fields: Record, isUpdate?: boolean): ValidationError[];