import { IDefaultParams, IError } from "../../types";
import { RoomsListResponse } from "../../types/v2/rooms_list";
type Response = RoomsListResponse & IError;
export declare const rooms_list: (params: {
    type?: 'playlists' | 'realtime';
    status?: 'all' | 'active' | 'ended' | 'participated' | 'owned';
    query?: string;
    limit?: number;
    sort?: 'ended' | 'created';
    cursor_string?: string;
}, addons?: IDefaultParams) => Promise<Response>;
export {};
