import { type IChatConversationLocal } from "../model.js"; import type { IGenAIAssistantSlots } from "./customized/types.js"; import { type GenAiStoreProps } from "./GenAiStore.js"; /** * Properties for the GenAIConversations component. * @public */ export type GenAIConversationsProps = Omit & { /** * The locale to use for the chat UI. */ locale?: string; /** * When provided, the function will be called when a conversation is selected. * The function will be called with the selected conversation. */ onConversationSelect?: (conversation: IChatConversationLocal) => void; /** * Additional class name applied to the root element. */ className?: string; /** * Customizations for the Gen AI assistant. */ slots?: IGenAIAssistantSlots; }; /** * UI component that renders the Gen AI assistant. * @public */ export declare function GenAIConversations(props: GenAIConversationsProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=GenAiConversations.d.ts.map