import { AbstractControl } from '@angular/forms'; /** * Validator to check that passwords are the same */ export declare function passwordValidator(control: AbstractControl): { [key: string]: boolean; } | null;