import type { FC, HTMLAttributes } from 'react';
type DescriptionListItem = {
    label: string;
    value: string | React.ReactNode;
};
type DescriptionList = DescriptionListItem[];
export type Props = {
    list: DescriptionList;
    heading?: string;
    footer?: React.ReactNode;
} & HTMLAttributes<HTMLDivElement>;
declare const DescriptionList: FC<Props>;
export default DescriptionList;
//# sourceMappingURL=DescriptionList.d.ts.map