import React from 'react';
import { HistoryItem } from '../utils/responseDisplay.js';
interface CommandHistoryProps {
    history: HistoryItem[];
    showHistory: boolean;
    useComponents?: boolean;
}
declare const CommandHistory: React.FC<CommandHistoryProps>;
export default CommandHistory;
