import React, { FC } from 'react'; import { DataListCellType } from './DataListCell'; export declare type DataListRowType = React.ReactElement; export interface DataListRowProperties { className?: string; children?: DataListCellType[] | DataListCellType; } export declare const DataListRow: FC;