/** * Platform detection and key display utilities */ /** Check if running on macOS */ export declare function isMac(): boolean; /** Get the modifier key name for display */ export declare function getModifierKey(): string; /** Get the option/alt key name for display */ export declare function getOptionKey(): string; /** Get the shift key symbol for display */ export declare function getShiftKey(): string; /** * Convert a binding string (e.g., 'mod+s') to display format (e.g., '⌘S') */ export declare function bindingToDisplay(binding: string): string; /** * Convert a binding to an array of display keys (for KeyBadge) */ export declare function bindingToKeys(binding: string): string[]; /** * Convert a KeyboardEvent to a binding string */ export declare function keyEventToBinding(e: KeyboardEvent): string; /** * Convert a KeyboardEvent to a display string */ export declare function keyEventToDisplay(e: KeyboardEvent): string;