import type { GenerateChartCellContext } from '../type';
import { ChartType as VMindChartType } from '../../../types';
import type { Cell, DataTable } from '../../../types';
export declare const getCellContextByAdvisor: (context: GenerateChartCellContext) => {
    chartType: VMindChartType;
    cell: Cell;
    dataset: DataTable;
    chartSource: string;
    usage: {
        prompt_tokens: number;
        completion_tokens: number;
        total_tokens: number;
    };
    advisedList: {
        chartType: string;
        cell: Cell;
        dataset: DataTable;
        score: number;
    }[];
};
