export interface OpenLiveRoomOptions {
    id: number;
    vehicleQuantity: number;
    title: string;
    subTitle: string;
    pushUrl: string;
    pullUrl: string;
    roomId: string;
    userId: string;
    userName: string;
    accelerateUrl: string;
    city: string;
    startTime: string;
    name: string;
    anchorPermisson: string;
    status: number;
    org: {
        id: string;
        name: string;
    };
}
/**
 * 打开直播室
 */
export declare const openLiveRoom: (options: OpenLiveRoomOptions) => void;
