import { KeyInfo } from '../types';

interface KeyPressEvent {
    keyInfo: KeyInfo;
    timestamp: number;
    id: string;
}
/**
 * Hook for tracking key press history
 * Returns keyHistory array, addKeyPress function, and clearHistory function
 */
export declare const useKeyPressIndicator: (maxHistory?: number) => {
    keyHistory: KeyPressEvent[];
    addKeyPress: (keyInfo: KeyInfo) => void;
    clearHistory: () => void;
};
export {};
//# sourceMappingURL=KeyPressIndicator.d.ts.map