import { CSSProperties, FunctionComponent } from 'react';
import Record from '../data-set/Record';
import { ColumnProps } from './Column';
export interface TableCellInnerProps {
    column: ColumnProps;
    record: Record;
    style?: CSSProperties;
    disabled?: boolean;
    inAggregation?: boolean;
    prefixCls?: string;
    colSpan?: number;
}
declare const TableCellInner: FunctionComponent<TableCellInnerProps>;
export default TableCellInner;
