import { AfterViewInit, EventEmitter, OnInit } from '@angular/core'; import { FormItemComponentInterface } from '../../../../interface/component'; import { IFormItemsControls } from '../../../../interface/form-structure'; export declare class PhoneComponent implements OnInit, AfterViewInit, FormItemComponentInterface { prop: IFormItemsControls; keyOnEnter: EventEmitter; lang: string; masks: { 'tr-TR': (string | RegExp)[]; 'en-US': (string | RegExp)[]; 'en-UK': (string | RegExp)[]; 'he-IL': (string | RegExp)[]; }; mask: any; datasetId: number; formId: number; constructor(); ngOnInit(): void; ngAfterViewInit(): void; getMask(): { mask: boolean; keepCharPositions?: undefined; } | { mask: any; keepCharPositions: boolean; }; }