import type { ReactNode } from "react"; import { type KbdVariantProps } from "./variants.js"; export * from "./variants.js"; export type KbdProps = KbdVariantProps & { /** The key label, e.g. "⌘", "K", "Enter". */ children: ReactNode; }; /** Keyboard-key chip for rendering shortcut hints. */ export declare function Kbd({ size, children }: KbdProps): import("react").JSX.Element; //# sourceMappingURL=index.d.ts.map