export default AgentChatsAPI; declare namespace AgentChatsAPI { export { getChatsList as getList }; export { markChatProcessed }; } declare function getChatsList(params: any): Promise<{ items: any; next: any; }>; declare function markChatProcessed(chatId: any): Promise;