import { CellType } from '../common/constant';
import type { TextTheme } from '../common/interface';
import { TableDataCell } from './table-data-cell';
export declare class TableSeriesNumberCell extends TableDataCell {
get cellType(): CellType;
protected getTextStyle(): TextTheme;
}