import React from 'react'; declare type Props = { /** Child element(s) */ children?: React.ReactNode | React.ReactNode[]; /** The style to be applied */ style?: React.CSSProperties; }; /** Contains the td elements */ declare const Cell: ({ children, style, ...other }: Props) => JSX.Element; export default Cell;