import type { StreamProfile } from "./types.js";
export declare function getRoomInfo(roomIdOrShortId: string, formatPriorities?: Array<"flv" | "hls">): Promise<{
    living: boolean;
    api: string;
    id: number;
    owner: string;
    title: string;
    roomId: number;
    avatar: string;
    cover: string;
    streams: StreamProfile[];
    sources: import("./types.js").SourceProfile[];
    startTime: Date;
    liveId: string;
}>;
