declare type MakePhoneCallCallbackOptions = import("../../common").CallbackOptions; export interface MakePhoneCallOptions extends MakePhoneCallCallbackOptions { /** * 要拨打的电话号码 */ phoneNumber: string; } export {};