export declare type ValidationError = {
    [key: string]: any;
};
export declare type ValidatorFunction = (value: any) => ValidationError | null;
