import * as react_jsx_runtime from 'react/jsx-runtime'; import * as React from 'react'; /** * Kbd — display keyboard keys and shortcuts (shadcn/ui). * @see https://ui.shadcn.com/docs/components/radix/kbd * * Variants: * - "tile" (default) — filled tile with border; use in tooltips, menus, docs, * or any surface where the Kbd sits on neutral background. * - "bare" — no background, no border; inherits `currentColor` at 70% opacity. * Use **inside buttons** (primary/secondary workflow actions) so the hint * does not look like a pasted-on patch against the button fill. */ declare function Kbd({ className, variant, "aria-hidden": ariaHidden, ...props }: React.ComponentProps<"kbd"> & { variant?: "tile" | "bare"; }): react_jsx_runtime.JSX.Element; declare function KbdGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element; export { Kbd, KbdGroup };