import PropTypes from 'prop-types'; type ResizableTableCellProps = { children: JSX.Element; }; declare function ResizableTableCell({ children }: ResizableTableCellProps): JSX.Element | null; declare namespace ResizableTableCell { var propTypes: { children: PropTypes.Validator; }; } export default ResizableTableCell; //# sourceMappingURL=ResizableTableCell.d.ts.map