export declare class ValidatorFields { constructor(); regex: { email: string; wordsOnly: string; wordsUnderline: string; words: string; wordsSpace: string; wordsSpaceDot: string; wordsSpaceNumberDot: string; wordsSpaceNumber: string; wordsSpaceEnterNumber: string; onlyWordsNumber: string; cpf: string; rg: string; cell: string; telephone: string; date: string; date2: string; time: string; idProfileFacebook: string; }; getMsg(value: string, params?: any[]): any; message: { fieldObrigatorio: string; equalValue: string; wordsOnly: string; words: string; wordsSpace: string; wordsSpaceDot: string; wordsSpaceNumber: string; wordsSpaceNumberDot: string; wordsSpaceEnterNumber: string; email: string; cpf: string; rg: string; cell: string; telephone: string; date: string; messageDefaultPattern: string; time: string; incorrectValue: string; minLength: string; maxLength: string; idProfileFacebook: string; }; resolveDate(value: any): Date; resolveDateTime(value: any): Date; validateDate(date_inicio: any, date_fim: any): Date[] | boolean; private validateOneDate; validateCPF(str: any, formControl: any): void; validateInput(str: any, strLength: number, nameField: string, formControl: any): boolean; validateInputs(str: any, strLength: number, nameField: string, formControl: any): boolean; private setErrorForm; dateTimeToString(valueDate: Date): string; removeSpaceString(str: any): string; }