import Wizard from './wizard' import WizardStep from './wizard-step' export { default as useWizard } from './use-wizard' export type { WizardStepController, WizardValues } from './wizard-types' export type WizardComponentType = typeof Wizard & { Step: typeof WizardStep } ;(Wizard as WizardComponentType).Step = WizardStep export default Wizard as WizardComponentType