import { ComponentPropsWithoutRef, PropsWithChildren, Ref } from 'react';
export type KbdProps = ComponentPropsWithoutRef<'div'> & {
ref?: Ref<HTMLElement>;
};
export declare const Kbd: ({ className, ref, ...props }: PropsWithChildren<KbdProps>) => import("react").JSX.Element;