import * as React from 'react'; import { AdaptableWizardStep, AdaptableWizardStepProps } from '../../Wizard/Interface/IAdaptableWizard'; import { FormatColumn } from '../../../PredefinedConfig/RunTimeState/FormatColumnState'; export interface FormatColumnSummaryWizardProps extends AdaptableWizardStepProps { } export declare class FormatColumnSummaryWizard extends React.Component implements AdaptableWizardStep { constructor(props: FormatColumnSummaryWizardProps); render(): JSX.Element; canNext(): boolean; canBack(): boolean; Next(): void; Back(): void; GetIndexStepIncrement(): number; GetIndexStepDecrement(): number; }