/** * ActionBar — single-row bottom strip listing global hotkeys. * * Used by CategoryScreen (and later SettingsHome). Visual emphasis tracks * pending state: bright when there are unsaved changes, dim when clean. * * Stateless. Parent owns pendingCount and the hotkeys array. */ import React from 'react'; export interface ActionBarHotkey { key: string; label: string; } export interface ActionBarProps { pendingCount: number; hotkeys: ReadonlyArray; } export declare function ActionBar(props: ActionBarProps): React.ReactElement; //# sourceMappingURL=ActionBar.d.ts.map