import { HTMLAttributes, ReactNode } from 'react'; import { DescriptionListSemantic } from '../../generated.js'; export type { DescriptionListSemantic } from '../../generated.js'; export type DescriptionListProps = Omit, "children"> & { bleed?: boolean; children?: ReactNode; divided?: boolean; emptyLabel?: ReactNode; semantic?: DescriptionListSemantic; }; export declare function DescriptionList({ bleed, children, className, divided, emptyLabel, semantic, ...props }: DescriptionListProps): import("react").JSX.Element;