/** 键帽 — 展示快捷键的单个按键。HotkeyCombo 排列一组键帽。 */ export interface KbdProps { /** 键名:⌘ ⇧ ⌥ ⌃ Space Enter 等 */ children?: any; } export declare function Kbd(props: KbdProps): any; export declare function HotkeyCombo(props: { keys: string[]; gap?: number }): any;