import React from 'react';
interface MessageInputProps {
    onSendMessage: (content: string) => void;
    isConnected: boolean;
    theme?: 'light' | 'dark';
    bgColor?: string;
    bgColorClass?: string;
    textColor?: string;
    textColorClass?: string;
    bgInput?: string;
    bgInputClass?: string;
    textInputColor?: string;
    textInputColorClass?: string;
    buttonBgColor?: string;
    buttonBgClass?: string;
    userRole?: 'admin' | 'user';
}
declare const MessageInput: React.FC<MessageInputProps>;
export default MessageInput;
