import { AbstractControl } from "@angular/forms"; export declare class ControlError { message: string; constructor(message: string); } export declare class FormValidators { static readonly CPFError: ControlError; static readonly CnpjError: ControlError; static readonly CPFCnpjError: ControlError; static CPFValidator(control: AbstractControl): ControlError | null; static CnpjValidator(control: AbstractControl): ControlError | null; static CPFCpnjValidator(control: AbstractControl): ControlError | null; static readonly TelefoneError: ControlError; static TelefoneValidator(control: AbstractControl): ControlError | null; static readonly CelularError: ControlError; static CelularValidator(control: AbstractControl): ControlError | null; static readonly TelefoneCelularError: ControlError; static TelefoneCelularValidator(control: AbstractControl): ControlError | null; static readonly PositiveNonZeroNumberError: ControlError; static PositiveNonZeroNumberValidator(fieldName: string): (control: AbstractControl) => ControlError | null; static readonly PositiveNumberError: ControlError; static PositiveNumberValidator(fieldName: string): (control: AbstractControl) => ControlError | null; static readonly ValueBetweenError: ControlError; static ValueBetweenValidator(min: number, max: number, fieldName: string, equalMin?: boolean, equalMax?: boolean): (control: AbstractControl) => ControlError | null; }