/** * Support country information interface. */ export declare type ZoomVideoSdkPhoneSupportCountryInfoType = { /** * Get the country code. */ getCountryCode: () => Promise; /** * Get the country ID. */ getCountryID: () => Promise; /** * Get the country name. */ getCountryName: () => Promise; }; export declare class ZoomVideoSdkPhoneSupportCountryInfo implements ZoomVideoSdkPhoneSupportCountryInfoType { private static instance; constructor(); static getInstance(): ZoomVideoSdkPhoneSupportCountryInfo; getCountryCode(): Promise; getCountryID(): Promise; getCountryName(): Promise; }