import * as React from 'react'; import { AdaptableWizardStep, AdaptableWizardStepProps } from '../../Wizard/Interface/IAdaptableWizard'; import { ActionMode } from '../../../PredefinedConfig/Common/Enums'; import { CellValidationRule } from '../../../PredefinedConfig/RunTimeState/CellValidationState'; export interface CellValidationActionWizardProps extends AdaptableWizardStepProps { } export interface CellValidationSettingsWizardState { ActionMode: ActionMode; } export declare class CellValidationActionWizard extends React.Component implements AdaptableWizardStep { constructor(props: CellValidationActionWizardProps); render(): any; private onActionModeChanged; canNext(): boolean; canBack(): boolean; Next(): void; Back(): void; GetIndexStepIncrement(): number; GetIndexStepDecrement(): number; }