@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
12 lines (11 loc) • 553 B
TypeScript
import type { ReactNode } from 'react';
import type { DlAllProps } from '../../../../elements/Dl';
import type { ValueProps } from '../../types';
export type ValueSummaryListProps = Omit<DlAllProps, 'label' | 'labelSrOnly' | 'children'> & {
children: ReactNode;
transformLabel?: ValueProps['transformLabel'];
inheritVisibility?: ValueProps['inheritVisibility'];
inheritLabel?: ValueProps['inheritLabel'];
};
declare function SummaryList(props: ValueSummaryListProps): import("react/jsx-runtime").JSX.Element;
export default SummaryList;