export type ValidatorFn = (value: any) => boolean;
export type ValidationSchema = {
    [key: string]: [any, string];
};
export interface ValidationResult {
    success: boolean;
    errors: Record<string, string>;
}
