export interface MakePhoneCallOptions {
    phoneNumber: string;
}
/**
 * 拨打电话 。
 */
export declare const makePhoneCall: (options: MakePhoneCallOptions) => void;
