@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
15 lines (14 loc) • 578 B
TypeScript
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;