import { Group } from '@antv/g-lite'; import { DataCell, type BaseChartData } from '@antv/s2'; export declare class ChartDataCell extends DataCell { chartShape: Group; drawTextShape(): void; isChartData(): boolean; getChartData(): BaseChartData; getChartOptions(): { type: "line" | "bar" | "bullet"; data: import("@antv/s2").RawData[]; encode?: { x: string; y: string; } | undefined; x: number; y: number; width: number; height: number; theme?: any; autoFit: boolean; }; }