import type { IChartSourceMultiRangeItem, ISheetChartSourceSingleRange } from '@univerjs-pro/sheets-chart'; import type { IUniverInstanceService, Nullable } from '@univerjs/core'; import { ChartTypeBits } from '@univerjs-pro/engine-chart'; export declare function serializeChartDataRange(rangeInfo: Nullable, univerInstanceService: IUniverInstanceService): string; export interface IChartTypeOption { label: string; value: ChartTypeBits; icon: string; } export declare const chartTypeOptions: IChartTypeOption[]; export declare function getChartMenuSelection(): IChartTypeOption[]; export declare const getOptionsList: (optionsList: IChartTypeOption[], allowTypes: ChartTypeBits[] | [string]) => IChartTypeOption[];