import * as React from "react"; /** * Props for the {@link Kbd} component. */ export type KbdProps = React.ComponentPropsWithoutRef<"kbd">; /** * Props for the {@link KbdGroup} component. */ export type KbdGroupProps = React.ComponentPropsWithoutRef<"kbd">; /** * Renders an inline keyboard keycap label. * * @remarks * - Pure CSS component (no Base UI primitive) * - Renders a `` element * - Styling via CSS Modules with `--ac-*` custom properties * * @example * ```tsx * ⌘K * ``` * * @see {@link KbdProps} for available props */ declare const Kbd: React.ForwardRefExoticComponent, HTMLElement>, "ref"> & React.RefAttributes>; /** * Groups multiple keyboard keycap labels into a shared visual cluster. * * @remarks * - Pure CSS component (no Base UI primitive) * - Renders a `` element * - Styling via CSS Modules with `--ac-*` custom properties * * @example * ```tsx * * * K * * ``` * * @see {@link KbdGroupProps} for available props */ declare const KbdGroup: React.ForwardRefExoticComponent, HTMLElement>, "ref"> & React.RefAttributes>; export { Kbd, KbdGroup }; //# sourceMappingURL=kbd.d.ts.map