import React, { CSSProperties, MouseEventHandler } from 'react'; import { CellPropsType } from './PropsType'; export interface CellProps extends CellPropsType { prefixCls?: string; className?: string; style?: CSSProperties; onClick?: MouseEventHandler; } declare class Cell extends React.Component { static defaultProps: { prefixCls: string; }; handleHeaderClick: (e: any) => void; render(): JSX.Element; } export default Cell;