export interface SwitchRoom {
    timestamp: number;
    avatar: string;
    username: string;
    color: string;
    uid: string;
    title: string;
    room: string;
    targetRoom: string;
}
/**
 * 解析用户切换房间的消息
 * @param message 消息
 * @returns {SwitchRoom | undefined}
 */
export declare const switchRoom: (message: string) => {
    timestamp: number;
    avatar: string;
    username: string;
    color: string;
    uid: string;
    title: string;
    room: string;
    targetRoom: string;
};
