type Char = 'A' | 'B' | 'C' | 'D' | 'E' | 'F' | 'G' | 'H' | 'I' | 'J' | 'K' | 'L' | 'M' | 'N' | 'O' | 'P' | 'Q' | 'R' | 'S' | 'T' | 'U' | 'V' | 'W' | 'X' | 'Y' | 'Z' | '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9'; type InputKey = 'Enter' | 'Esc' | 'ArrowUp' | 'ArrowDown' | 'ArrowLeft' | 'ArrowRight' | 'Tab' | 'Delete' | Char; export type Key = InputKey | `${ModKeys}+${InputKey}` | DoubleMod<'Cmd'> | DoubleMod<'Alt'> | DoubleMod<'Shift'>; type ModKeys = `Cmd` | `Alt` | `Shift`; type DoubleMod = `${M}+${Exclude}+${InputKey}`; type KeyHintProps = { hint: Key; color?: 'neutral' | 'inverted' | 'red' | 'white'; }; declare function KeyHint({ hint, color }: KeyHintProps): import("react/jsx-runtime").JSX.Element; export { KeyHint }; export type { KeyHintProps };