import type { IConversation } from './conversation'; export interface IListParams { lastConversationStartedOn?: number; } export declare type ListResult = IConversation[]; export interface IConversationsExplorerApi { conversationsExplorerList(params: IListParams): Promise; }