import { LogicalExpression } from 'fusefx-repositorycontract'; export type ChartType = 'Table' | 'Bar' | 'Pie' | 'Line' | 'Area' | 'Donut'; export declare class ReportChartDefinition { type: ChartType; groupBy?: string[]; stackBy?: string[]; reportValues?: string[]; limit: number; sortedBy: string; name: string; folder: string; horizontal: boolean; multiAxis: boolean; stacked: boolean; prefixToRemove?: string; } export declare class ReportDefinition extends ReportChartDefinition { filter?: LogicalExpression; }