import type { CompositeFunctionDescriptor } from '../../treb-calculator/src/descriptors'; export type ChartFunction = 'Bar.Chart' | 'Line.Chart' | 'Area.Chart' | 'Column.Chart' | 'Bubble.Chart' | 'Donut.Chart' | 'Pie.Chart' | 'Scatter.Line' | 'Scatter.Plot' | 'Box.Plot'; type SupportFunction = 'Group' | 'Series'; /** * chart functions for registration */ export declare const ChartFunctions: Record; export {};