import React from 'react'; import { CommonStyledProps } from '../types'; declare type TableDataCellProps = { children?: React.ReactNode; } & React.HTMLAttributes & CommonStyledProps; declare const TableDataCell: React.ForwardRefExoticComponent<{ children?: React.ReactNode; } & React.HTMLAttributes & CommonStyledProps & React.RefAttributes>; export { TableDataCell, TableDataCellProps }; //# sourceMappingURL=TableDataCell.d.ts.map