import { AdaptableBlotterObject } from '../../../PredefinedConfig/AdaptableBlotterObject'; export declare enum WizardStatus { New = "New", Edit = "Edit", None = "None" } export interface EditableConfigEntityState { EditedAdaptableBlotterObject: AdaptableBlotterObject; WizardStartIndex: number; WizardStatus: WizardStatus; }