import { type GenAIChatEffort } from "@gooddata/sdk-model"; import { type GenAIAgent, type IChatConversationLocal } from "../model.js"; export type GenAIChatAgentDropdownProps = { agents: GenAIAgent[]; conversations?: IChatConversationLocal[]; conversationAgentId?: string; selectedAgentId?: string; isDisabled?: boolean; isLoading?: boolean; onSelectAgent: (agentId: string | undefined, options?: { showChangeEvent?: boolean; }) => void; selectedEffort?: GenAIChatEffort; effectiveSelectedAgentId?: string; onSelectEffort?: (effort: GenAIChatEffort) => void; }; export declare function GenAIChatAgentDropdown({ agents, conversations, conversationAgentId, selectedAgentId, isDisabled, isLoading, onSelectAgent, onSelectEffort, selectedEffort, effectiveSelectedAgentId: effectiveSelectedAgentIdFromProps, }: GenAIChatAgentDropdownProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=GenAIChatAgentDropdown.d.ts.map