export interface IFormInputValidator {
    validate(value: any): string | null;
}
