import * as react from 'react'; import { HTMLAttributes } from 'react'; interface KbdProps extends HTMLAttributes { /** * The keys to display. Separate by + for chords. * @example "⌘K", "⌘⇧S", "⌘K", "Esc" */ keys: string | string[]; /** Small variant for inline use */ size?: 'sm' | 'md'; } /** * Keyboard shortcut chip — inspired by Raycast shortcut badges. * * ```tsx * * * * ``` */ declare const Kbd: react.ForwardRefExoticComponent>; export { Kbd, type KbdProps };