import { BaseComponentContext } from './BaseComponentContext.js'; import { Component } from '@formio/core'; export type WizardContext = BaseComponentContext & { className: string; wizardHeader: string; wizardNav: string; components: string; wizardHeaderType: string; wizardKey: string; component: Component & { title: string; }; wizardHeaderLocation: string; };