import * as React from 'react'; import { kbdPropDefs } from './kbd.props.js'; import type { MarginProps } from '../props/margin.props.js'; import type { ComponentPropsWithout, RemovedProps } from '../helpers/component-props.js'; import type { GetPropDefTypes } from '../props/prop-def.js'; type KbdOwnProps = GetPropDefTypes; interface KbdProps extends ComponentPropsWithout<'kbd', RemovedProps>, MarginProps, KbdOwnProps { } declare const Kbd: React.ForwardRefExoticComponent>; export { Kbd }; export type { KbdProps }; //# sourceMappingURL=kbd.d.ts.map