/**
 * The options to initialize a wizard step with.
 */
export interface WizardStepOptions {
    /**
     * Displayed name of step.
     */
    name: string;
}
