import * as React from 'react'; import { AdaptableWizardStep, AdaptableWizardStepProps } from '../../Wizard/Interface/IAdaptableWizard'; import { LayoutSource } from '../../../PredefinedConfig/Common/Enums'; import { Layout, ColumnSort } from '../../../PredefinedConfig/RunTimeState/LayoutState'; export interface LayoutSelectionWizardProps extends AdaptableWizardStepProps { Layouts: Array; ColumnSorts: ColumnSort[]; } export interface LayoutSelectionWizardState { LayoutSource: LayoutSource; } export declare class LayoutSelectionWizard extends React.Component implements AdaptableWizardStep { constructor(props: LayoutSelectionWizardProps); render(): any; private onScopeSelectChanged; canNext(): boolean; canBack(): boolean; Next(): void; Back(): void; GetIndexStepIncrement(): 1 | 3; GetIndexStepDecrement(): number; }