import { DataCell } from '../cell/data-cell';
import type { CellMeta } from '../common';
import type { TextTheme } from '../common/interface';
export declare class TableDataCell extends DataCell {
    protected getLinkFieldStyle(): string;
    protected getTextStyle(): TextTheme;
    protected shouldDrawResizeArea(): boolean;
    drawResizeArea(): void;
    protected isDisableHover(cellMeta: CellMeta): boolean;
    protected getResizedTextMaxLines(): number | undefined;
}
