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