import { ClientState } from '../../../core'; interface MessageInputProps { state: ClientState; isReady: () => boolean; sendText: (message: string) => Promise; startRecording: () => Promise; stopRecording: () => Promise; } export declare const MessageInput: ({ state, isReady, sendText, startRecording, stopRecording, }: MessageInputProps) => import("react/jsx-runtime").JSX.Element; export {};