IWizardModal: Omit<IWizardOutlet<Data, Payload>, keyof { element: never }> & {
    element: (props: IWizardModalProps<Data, Payload>) => React.ReactElement;
}

Represents a modal wizard with specific data and payload types.

Type Parameters

  • Data = IAnything

    The type of data passed to the wizard.

  • Payload = IAnything

    The type of payload returned by the wizard.