import { default as React } from 'react'; import { DataListItemOwnProps } from './DataListItem'; /** @inheritdoc */ export interface DataListSectionOwnProps extends Omit { } /** @inheritdoc */ export interface DataListSectionProps extends DataListSectionOwnProps, Omit, 'className'> { } export declare function getDataListSectionProps

({ className, ...rest }: P): { className: string; } & Omit; export declare const DataListSection: ((props: DataListSectionProps) => React.JSX.Element) & { displayName: string; Header: React.ForwardRefExoticComponent> & { displayName: string; }; };