import { Group } from '@antv/g';
import { type AxisComponent } from '@antv/g2';
import { CellBorderPosition, RowCell } from '@antv/s2';
import type { PivotChartSheet } from '../pivot-chart-sheet';
export declare class AxisRowCell extends RowCell {
    protected spreadsheet: PivotChartSheet;
    protected axisShape: Group;
    get cellType(): any;
    protected getBorderPositions(): CellBorderPosition[];
    protected isBolderText(): boolean;
    protected getInteractedCells(): import("@antv/s2").CellMeta[];
    protected initCell(): void;
    protected getResizesArea(): Group | undefined;
    drawTextShape(): void;
    getChartOptions(): AxisComponent;
    drawAxisShape(): void;
}
