import * as React from 'react'; type KbdSize = 'sm' | 'md' | 'lg'; interface KbdProps extends React.ComponentProps<'kbd'> { /** * Height, padding, and text scale. Inherited from a `KbdGroup`. * @default 'md' */ size?: KbdSize; } declare function Kbd({ className, size, ...props }: KbdProps): React.JSX.Element; interface KbdGroupProps extends React.ComponentProps<'span'> { /** * Default size applied to each child `Kbd` that doesn't set its own. * @default 'md' */ size?: KbdSize; } declare function KbdGroup({ className, size, children, ...props }: KbdGroupProps): React.JSX.Element; export { Kbd, KbdGroup }; export type { KbdProps, KbdGroupProps, KbdSize }; //# sourceMappingURL=kbd.d.ts.map