import { ChatSpeechRecognitionConfig } from '../../dtos/ChatConfig.dto'; export interface IMessageInput { onDictationClick?: () => void; placeholder?: string; onSubmit?: (message: string) => Promise; disableSend?: boolean | undefined; audioInterface?: boolean | undefined; speechRecognition?: ChatSpeechRecognitionConfig; hasEnded?: boolean; isPopover?: boolean; close?: () => void; } export declare const MessageInput: React.FC; //# sourceMappingURL=index.d.ts.map