import React from "react"; import { SpaceProps } from "styled-system"; import { TagProps } from "../../../__internal__/utils/helpers/tags"; export interface DdProps extends SpaceProps, TagProps { /** Prop for what will render in the `
` tags */ children: React.ReactNode; } declare const Dd: { ({ children, ...rest }: DdProps): React.JSX.Element; displayName: string; }; export default Dd;