import { OnInit } from '@angular/core'; import { FormControl, FormGroup } from '@angular/forms'; import { Factory as IntegerMaskFactory } from './IntegerMask/Factory'; export declare class TelephoneInputComponent implements OnInit { form: FormGroup; controlName: string; placeholder: string; required: boolean; telephoneInput: FormControl; dialCode: string; telephoneNumber: string; hideFlag: boolean; private integerMask; private integerMaskFactory; constructor(integerMaskFactory: IntegerMaskFactory); ngOnInit(): void; hasError(control: string): boolean; onIntlTelInputObject(input: HTMLInputElement): void; onCountryChange(country: any, input: HTMLInputElement): void; onFocusTelInput(): void; onBlurTelInput(input: HTMLInputElement): void; private getTelephoneWithDialCode(dialCode, telephoneNumber); }