/**
 * The model representation of the validation of a wizard step.
 */
export interface WizardStepValidation {
    /**
     * Whether of not the step validation succeeded.
     */
    isValid: boolean;
}
