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