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