import * as React from 'react'; import { dataListRootPropDefs, dataListItemPropDefs, dataListLabelPropDefs } from './data-list.props.js'; import type { MarginProps } from '../props/margin.props.js'; import type { ComponentPropsWithout, RemovedProps } from '../helpers/component-props.js'; import type { GetPropDefTypes } from '../props/prop-def.js'; type DataListRootOwnProps = GetPropDefTypes; interface DataListRootProps extends ComponentPropsWithout<'dl', RemovedProps>, MarginProps, DataListRootOwnProps { } declare const DataListRoot: React.ForwardRefExoticComponent>; type DataListItemOwnProps = GetPropDefTypes; interface DataListItemProps extends ComponentPropsWithout<'div', RemovedProps>, DataListItemOwnProps { } declare const DataListItem: React.ForwardRefExoticComponent>; type DataListLabelOwnProps = GetPropDefTypes; interface DataListLabelProps extends ComponentPropsWithout<'dt', RemovedProps>, DataListLabelOwnProps { } declare const DataListLabel: React.ForwardRefExoticComponent>; interface DataListValueProps extends ComponentPropsWithout<'dd', RemovedProps> { } declare const DataListValue: React.ForwardRefExoticComponent>; export { DataListRoot as Root, DataListItem as Item, DataListLabel as Label, DataListValue as Value, }; export type { DataListRootProps as RootProps, DataListItemProps as ItemProps, DataListLabelProps as LabelProps, DataListValueProps as ValueProps, }; //# sourceMappingURL=data-list.d.ts.map