import type { ReactNode } from 'react'; export interface AgentTextInputProps { composerText: string; onComposerTextChange: (text: string) => void; isLoading: boolean; isListening: boolean; onSubmit: () => void; rightSection?: ReactNode; rightSectionWidth?: number | string; } export declare function AgentTextInput({ composerText, onComposerTextChange, isLoading, isListening, onSubmit, rightSection, rightSectionWidth, }: AgentTextInputProps): import("react/jsx-runtime").JSX.Element;