import type { FunctionComponent } from 'react'; export interface ShortcutProps { /** Array of shortcut keys */ keys: string[]; /** Shortcut description */ description?: React.ReactNode; /** Indicates whether symbols should be displayed for certain keys */ showSymbols?: boolean; /** Show hover in the shortcut */ hover?: boolean; /** Show click in the shortcut */ click?: boolean; /** Show right click in the shortcut */ rightClick?: boolean; /** Show drag in the shortcut */ drag?: boolean; /** Show drag and drop in the shortcut */ dragAndDrop?: boolean; /** Shortcut className */ className?: string; /** Custom OUIA ID */ ouiaId?: string | number; } declare const Shortcut: FunctionComponent; export default Shortcut;