type ChatSession = { id: string; title: string; timestamp: number; preview: string; isStarred?: boolean; }; type ChatHistoryProps = { isOpen: boolean; onToggle: () => void; sessions: ChatSession[]; currentSessionId: string; onSessionSelect: (sessionId: string) => void; onSessionDelete: (sessionId: string) => void; onNewChat: () => void; onSessionRename?: (sessionId: string, newTitle: string) => void; textColor?: string; backgroundColor?: string; }; export declare const ChatHistory: (props: ChatHistoryProps) => import("solid-js").JSX.Element; export {}; //# sourceMappingURL=ChatHistory.d.ts.map