import { IDefaultParams, IError } from "../../types";
import { ForumsTopicsDetailsResponse } from "../../types/v2/forums_topics_details";
type Response = ForumsTopicsDetailsResponse & IError;
export declare const forums_topics_details: (params: {
    id: number;
    start_id?: string;
    end_id?: string;
    limit?: number;
    sort?: 'id_asc' | 'id_desc';
    cursor_string?: string;
}, addons?: IDefaultParams) => Promise<Response>;
export {};
