import { default as React } from 'react'; export interface KbdProps { /** Keyboard key(s) to display */ children: React.ReactNode; /** Size variant */ size?: 'sm' | 'md' | 'lg'; /** Additional className */ className?: string; } /** * Kbd Component * * Displays keyboard shortcuts with semantic HTML and consistent styling. * Used to represent user input from keyboard. * * @example * ```tsx * Ctrl + C * ``` * * @example * ```tsx * Press Enter to submit * ``` */ export declare const Kbd: React.FC; //# sourceMappingURL=kbd.d.ts.map