import React, { Component } from 'react'; import PropTypes from 'prop-types'; import type { CellProps } from './types'; /** * ResponsiveGrid.Cell */ declare class Cell extends Component { static _typeMark: string; static propTypes: { device: PropTypes.Requireable; colSpan: PropTypes.Requireable>; rowSpan: PropTypes.Requireable; component: PropTypes.Requireable; }; static defaultProps: { component: string; device: string; }; static displayName: string; render(): React.JSX.Element; } declare const _default: import("../config-provider/types").ConfiguredComponentClass & { _typeMark: string; }; export default _default;