import { KbdProps as ChakraKbdProps } from '@chakra-ui/react/kbd'; import { default as React } from 'react'; export type KbdProps = Omit & { ref?: React.Ref; slot?: string | null | undefined; }; /** * # Kbd * * Renders a keyboard shortcut or key combination, styled for visual clarity. * Typically used to visually represent keyboard keys. * * @see {@link https://nimbus-documentation.vercel.app/components/typography/kbd} */ export declare const Kbd: ({ ref: forwardedRef, slot, ...props }: KbdProps) => import("react/jsx-runtime").JSX.Element;