import React from 'react';
interface CommandInputProps {
    value: string;
    onChange: (value: string) => void;
    onSubmit: (value: string) => void;
    mode?: 'standard' | 'mcp';
    currentRoomObjects?: string[];
}
declare const CommandInput: React.FC<CommandInputProps>;
export default CommandInput;
