import React from 'react';
import { DlAllProps } from '../../../../elements/Dl';
import { ValueProps } from '../../types';
export type Props = Omit<DlAllProps, 'label' | 'labelSrOnly' | 'children'> & {
    children: React.ReactNode;
    transformLabel?: ValueProps['transformLabel'];
    inheritVisibility?: ValueProps['inheritVisibility'];
    inheritLabel?: ValueProps['inheritLabel'];
};
declare function SummaryList(props: Props): import("react/jsx-runtime").JSX.Element;
declare namespace SummaryList {
    var _supportsSpacingProps: boolean;
}
export default SummaryList;
