@voice-ai-workforce/react
Version:
React components with 3-tier interface modes for voice-controlled workforce applications
16 lines (15 loc) • 607 B
TypeScript
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;