import { FormControl, Validators } from '@angular/forms'; export declare class RcValidators extends Validators { patterns: any; static validateCharacters(validCharacters: any): (control: FormControl) => { invalidCharacters: boolean; }; static validateIdNumber(): any; static minLength(length: any): (control: FormControl) => { minlength: boolean; }; static maxLength(length: any): (control: FormControl) => { maxlength: boolean; }; static maxValue(value: any): (control: FormControl) => { maxvalue: boolean; }; static minValue(value: any): (control: FormControl) => { minvalue: boolean; }; static matchPassword(compareControl: FormControl): (control: FormControl) => { matchPassword: boolean; }; static unMatchValue(compareControl: FormControl): (control: FormControl) => { unMatchValue: boolean; }; }