import { type ReactElement } from "react"; import { type IChatConversationLocal } from "../model.js"; type GenAIChatConversationsProps = { wrapper?: ReactElement; onClose?: () => void; onSelect: (conversation: IChatConversationLocal) => void; }; export declare function GenAIChatConversations({ onClose, onSelect, wrapper }: GenAIChatConversationsProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=GenAIChatConversations.d.ts.map