export interface ChatHistory {
messages: Array<{
role: "system" | "user" | "assistant";
content: string;
}>;
}
export declare function saveHistory(history: ChatHistory): void;
export declare function clearHistory(): void;
export declare function loadHistory(): ChatHistory;