import { RefObject } from 'react'; import { WidgetFeatureFlags, WidgetParticipant } from './types'; interface ComposerProps { composerValue: string; onComposerChange: (value: string) => void; fileInputRef: RefObject; onFilesSelected: (files: FileList | null) => void; onAttachClick: () => void; onSend: () => void; uploading: boolean; isSendingMessage: boolean; featureFlags: WidgetFeatureFlags; mentionSuggestions: WidgetParticipant[]; onSelectMention: (participant: WidgetParticipant) => void; tr: (key: string, fallback: string) => string; } export declare function Composer({ composerValue, onComposerChange, fileInputRef, onFilesSelected, onAttachClick, onSend, uploading, isSendingMessage, featureFlags, mentionSuggestions, onSelectMention, tr, }: ComposerProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Composer.d.ts.map