import { Platform } from './types.mjs'; interface FormatHotkeyOptions { /** Platform-specific formatting ('auto' detects current platform) */ platform?: Platform | "auto" | undefined; /** Display style for keys */ style?: "symbols" | "text" | "mixed" | undefined; /** Separator between modifier and key */ separator?: string | undefined; /** Separator for key sequences */ sequenceSeparator?: string | undefined; /** Use abbreviated modifier nampes */ useShortNames?: boolean | undefined; } /** * Format hotkey string for user-friendly display with platform-aware styling */ declare function formatHotkey(hotkey: string, options?: FormatHotkeyOptions): string; export { type FormatHotkeyOptions, formatHotkey };