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