export type IType = 'text' | 'number' | 'email' | 'textarea'; export type ValidatorOuput = string | boolean; export interface ValidatorFunc { (value: any): ValidatorOuput | Promise; } export type IAutoComplete = 'on' | 'off' | 'new-password';