import React, { ReactNode } from 'react'; import { TdCellProps } from './type'; import { NativeProps } from '../_util/withNativeProps'; export interface CellProps extends TdCellProps, NativeProps { children?: ReactNode; } declare const Cell: React.FC; export default Cell;