/**
 * HTML Element
 *
 */
import type { ReactNode, Ref } from 'react';
import type { SpacingProps } from '../../shared/types';
export type DdProps = {
    className?: string;
    children: ReactNode;
};
declare function Dd({ ref, ...props }: DdProps & SpacingProps & {
    ref?: Ref<HTMLElement>;
}): import("react/jsx-runtime").JSX.Element;
export default Dd;
