export declare enum ENUM_ERROR_TYPES { REQUIRED = "required", WHITESPACE = "whitespace", EMAIL_ERROR = "email" } export declare const ERROR_INFO: { required: string; email: string; whitespace: string; max(value: number): string; min(value: number): string; };