import * as React from 'react'; import { AdaptableWizardStep, AdaptableWizardStepProps } from '../../Wizard/Interface/IAdaptableWizard'; import { CellValidationRule } from '../../../PredefinedConfig/RunTimeState/CellValidationState'; import { UserFilter } from '../../../PredefinedConfig/RunTimeState/UserFilterState'; export interface CellValidationSummaryWizardProps extends AdaptableWizardStepProps { UserFilters: UserFilter[]; } export declare class CellValidationSummaryWizard extends React.Component implements AdaptableWizardStep { constructor(props: CellValidationSummaryWizardProps); render(): any; canNext(): boolean; canBack(): boolean; Next(): void; Back(): void; GetIndexStepIncrement(): number; GetIndexStepDecrement(): 1 | 2; }