import { Route } from '../../../types/route'; export type FetchRoomInfoFromApiRouteParams = { uniqueId: string; }; export type FetchRoomInfoFromApiRouteResponse = { statusCode: number; message?: string; data?: { user?: Record & { roomId: string; }; liveRoom?: Record & { status: number; roomId: string; }; }; }; export declare class FetchRoomInfoFromApiLiveRoute extends Route { call({ uniqueId }: { uniqueId: any; }): Promise; } //# sourceMappingURL=fetch-room-info-api-live.d.ts.map