import { FunctionComponent, HTMLProps } from 'react'; export interface DataListCellProps extends HTMLProps { width: 1 | 2 | 3 | 4 | 5; } declare const DataListCell: FunctionComponent; export default DataListCell;