import React from 'react'; type ConnectionState = 'STATE_IDLE' | 'STATE_CONNECTING' | 'STATE_CONNECTED' | 'STATE_DISCONNECTING'; type StateColors = { [state in ConnectionState]?: string; }; interface AiAssistantButtonProps { stateColors?: StateColors; style?: any; onClick?: () => void; icon?: React.ReactNode; tooltip?: string; [key: string]: any; } declare const AiAssistantButton: ({ stateColors, style, onClick, icon, tooltip, ...props }: AiAssistantButtonProps) => import("react/jsx-runtime").JSX.Element; export { AiAssistantButton };