import * as React from 'react'; export interface DataListItemProps extends Omit, 'children' | 'ref'> { /** Flag to show if the expanded content of the DataList item is visible */ isExpanded?: boolean; /** Content rendered inside the DataList item */ children: React.ReactNode; /** Additional classes added to the DataList item should be either or */ className?: string; /** Adds accessible text to the DataList item */ 'aria-labelledby': string; /** Unique id for the DataList item */ id?: string; /** Aria label to apply to the selectable input if one is rendered */ selectableInputAriaLabel?: string; } export interface DataListItemChildProps { /** Id for the row */ rowid: string; } declare class DataListItem extends React.Component { static displayName: string; static defaultProps: DataListItemProps; render(): React.JSX.Element; } export { DataListItem }; //# sourceMappingURL=DataListItem.d.ts.map