import * as React from 'react';
import { IColumnProps } from '../../constant';
export interface ICellProps<T> {
    col: IColumnProps<T>;
    renderDom: string | React.ReactNode;
    handleCellResize: ({ size }: any, dataIndex?: string) => void;
    width?: number | string;
}
export default function Cell(props: ICellProps<any>): React.JSX.Element;
