import type { BusinessUnit } from "../Foundry/types"; export interface ChatSession { id: string; title: string; lastMessage: string; } interface ChatSessionSidebarProps { sessions: ChatSession[]; currentSession?: ChatSession | null; teams: BusinessUnit[]; onNewChat: () => void; onSessionSelect: (session: ChatSession) => void; onSessionEdit?: (sessionId: string) => void; onSessionDelete?: (sessionId: string) => void; className?: string; } export declare function ChatSessionSidebar({ sessions, currentSession, teams, onNewChat, onSessionSelect, onSessionEdit, onSessionDelete, className, }: ChatSessionSidebarProps): import("react/jsx-runtime").JSX.Element; export {};