import { IDefaultParams, IError } from "../../types";
import { forums_topics_list_response } from "../../types/v2/forums_topics_list";
type Response = forums_topics_list_response & IError;
export declare const forums_topics_list: (params: {
    id: number;
    sort?: 'new' | 'old';
    limit?: number;
    cursor_string?: string;
}, addons?: IDefaultParams) => Promise<Response>;
export {};
