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; }; declare const _default: WizardComponentType; export default _default;