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