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