/** * KeyHintsBar Component * * Unified keyboard hints bar for all views. Renders key-action pairs * with consistent styling, responsive truncation, and conditional display. * * @since v2.7.5 - New unified hints component */ import type React from 'react'; export interface KeyHint { key: string; action: string; when?: boolean; } export interface KeyHintsBarProps { hints: KeyHint[]; compact?: boolean; separator?: string; } export declare function KeyHintsBar({ hints, compact, separator }: KeyHintsBarProps): React.ReactElement; //# sourceMappingURL=KeyHintsBar.d.ts.map