import { IDefaultParams, IError } from "../../types";
import { ChatListResponse } from "../../types/v2/chat_list";
type Response = ChatListResponse[] & IError;
export declare const chat_list: (params: {
    unread?: boolean;
    sort?: 'date_desc' | 'date_asc';
}, addons?: IDefaultParams) => Promise<Response>;
export {};
