export type Errors = Record<string, any | any[]>;
export type Touched = Record<string, boolean>;
export type ValidateData = {
    fields: string[];
    type: string;
    args?: any[];
};
export type BeforeSubmitData = {
    value: any | undefined;
    errors: Errors;
};
