import * as react_jsx_runtime from 'react/jsx-runtime';
import { PropsWithChildren, ComponentPropsWithoutRef, Ref } from 'react';

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

export { Kbd };
