import { type MouseEvent, type ReactNode } from "react"; type GenAiChatAgentSwitchingOwnProps = { disabled: boolean; agentDropdownDisabled: boolean; isAssistantLoading: boolean; isConversationsLoading: boolean; handleSubmit: () => void; onMouseDown?: (event: MouseEvent) => void; setBusy?: (busy: boolean) => void; setNoAgents?: (noAgents: boolean) => void; leftContent?: ReactNode; }; export declare function GenAiChatAgentSwitching(ownProps: GenAiChatAgentSwitchingOwnProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=GenAiChatAgentSwitching.d.ts.map