import { type VariantProps } from 'class-variance-authority'; import type { ComponentProps } from 'react'; declare const kbd: (props?: ({ variant?: "solid" | "ghost" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare const kbdGroup: (props?: ({ variant?: "solid" | "ghost" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type KbdProps = ComponentProps<'kbd'> & VariantProps; export type KbdGroupProps = ComponentProps<'kbd'> & VariantProps; export declare const Kbd: { ({ className, variant, ...props }: KbdProps): import("react/jsx-runtime").JSX.Element; displayName: string; } & { Group: { ({ className, variant, ...props }: KbdGroupProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; }; export {}; //# sourceMappingURL=kbd.d.ts.map