import { FormControl } from '@angular/forms'; export declare const EMAIL_REGEX: RegExp; export declare const ZIP_REGEX: RegExp; export declare function ValidEmailAddress(control: FormControl): { invalidEmail: boolean; }; export declare function getById(id: string, arr: T[], throwOnError?: boolean): T;