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