import type { ZoomVideoSDKDialInNumberType } from './ZoomVideoSdk'; export declare type ZoomVideoSdkSessionDialInNumberInfoType = { /** * The country ID. */ countryId: string; /** * The country code. */ countryCode: string; /** * The country name. */ countryName: string; /** * Dial in number. */ number: string; /** * Dial in number format string for display. */ displayNumber: string; /** * Get the current item dial in number type. */ type: ZoomVideoSDKDialInNumberType; }; export declare class ZoomVideoSdkSessionDialInNumberInfo implements ZoomVideoSdkSessionDialInNumberInfoType { countryId: string; countryCode: string; countryName: string; number: string; displayNumber: string; type: ZoomVideoSDKDialInNumberType; constructor(sessionDialInNumberInfo: ZoomVideoSdkSessionDialInNumberInfoType); }