/** * @fileoverview Bottom action row of the message composer. * * Renders the file-upload/settings dropdown, an optional microphone button when speech input is supported, * and a send/stop-streaming button. */ import React from "react"; interface ActionBarProps { loading: boolean; isListening: boolean; isSpeechSupported: boolean; toggleSpeech: () => void; handleFiles: (files: FileList | File[]) => void; hasContent: boolean; handleSend: () => void; onStop?: () => void; } export declare function ActionBar({ loading, isListening, isSpeechSupported, toggleSpeech, handleFiles, hasContent, handleSend, onStop, }: ActionBarProps): React.JSX.Element; export {};