import { OnDestroy, OnInit } from '@angular/core'; import { FormGroup } from '@angular/forms'; import * as i0 from "@angular/core"; export declare class RdPhoneComponent implements OnInit, OnDestroy { /** Parent FormGroup — controls are registered into it */ form: any | FormGroup; areaCodeControlName: string; phoneControlName: string; label: string; required: boolean; /** Local color context. Omit to inherit body `.theme-light` / `.theme-dark`. */ theme?: 'light' | 'dark'; /** Area codes to exclude from the dropdown (e.g. ['+86']) */ excludeAreaCodes: any[]; /** Full area-code list from the host (e.g. commonService.areaDictionary) */ areaCodeOptions: any[]; get filteredAreaCodeOptions(): any[]; private destroy$; get hostThemeLight(): boolean; get hostThemeDark(): boolean; constructor(); ngOnInit(): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }