import React from 'react';
import { VoiceAIConfig, VoiceModeProps } from '../../../types/src/types';
import { VoiceAIThemeProps } from '../types/theme';
export interface VoiceHistoryPanelProps extends VoiceAIThemeProps, VoiceModeProps {
    config: VoiceAIConfig;
    maxItems?: number;
    onCommandReplay?: (commandId: string) => void;
    onHistoryChange?: (historyLength: number) => void;
    showFilters?: boolean;
    showSearch?: boolean;
    showStats?: boolean;
    showExport?: boolean;
}
export declare const VoiceHistoryPanel: React.FC<VoiceHistoryPanelProps>;
export default VoiceHistoryPanel;
