import { ComponentProps, FC } from 'react'; import { DeepPartial } from '../../types/types'; import { KbdTheme } from './theme'; export interface KbdProps extends ComponentProps<"span"> { icon?: FC>; theme?: DeepPartial; } /** * @name Kbd * @description The Kbd component is used to define keyboard input in a document, it is used to display the keyboard input in a monospaced font. * @returns React.FC */ export declare const Kbd: FC; //# sourceMappingURL=Kbd.d.ts.map