import { Conversation } from '../types/models.js'; interface UseConversationListResult { conversations: Conversation[]; loadMore: () => void; loading: boolean; hasMore: boolean; error: Error; } declare function useConversationList(accountId: string): UseConversationListResult; export { UseConversationListResult, useConversationList }; //# sourceMappingURL=useConversationList.d.ts.map