import type { ComponentProps, FC } from 'react'; import { type VariantProps } from 'class-variance-authority'; import type { TestableProps } from '../../utils/testId'; declare const kbdVariants: (props?: ({ size?: "small" | "medium" | "xsmall" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type KbdVariantsProps = VariantProps; type KbdProps = ComponentProps<'kbd'> & KbdVariantsProps & TestableProps; export declare const Kbd: FC; export {};