import type { Message } from '@langchain/langgraph-sdk';
interface UseFleekAgentChatHistoryResult {
    historyMessages: Message[];
    isHistoryLoaded: boolean;
    reloadHistory: () => void;
    error: Error | null;
}
export declare const useFleekAgentChatHistory: () => UseFleekAgentChatHistoryResult;
export {};
