import { IDefaultParams, IError } from "../../types";
import { ChatDetailsResponse } from "../../types/v2/chat_details";
type Response = ChatDetailsResponse & IError;
export declare const chat_details: (params: {
    channel_id: number;
}, addons?: IDefaultParams) => Promise<Response>;
export {};
