import * as React from 'react'; import { AdaptableWizardStepProps, AdaptableWizardStep } from '../../../Wizard/Interface/IAdaptableWizard'; import { CategoryChartDefinition } from '../../../../PredefinedConfig/RunTimeState/ChartState'; export interface CategoryChartSummaryWizardProps extends AdaptableWizardStepProps { } export declare class CategoryChartSummaryWizard extends React.Component implements AdaptableWizardStep { constructor(props: CategoryChartSummaryWizardProps); render(): any; private getExpressionString; canNext(): boolean; canBack(): boolean; Next(): void; Back(): void; GetIndexStepIncrement(): number; GetIndexStepDecrement(): number; }