import { SnapInOutput } from '../../../data/extension-broker/snap-in-listener';
/**
 * The model representation snap-in output that is specific to a wizard step.
 */
export interface WizardStepSnapInOutput extends SnapInOutput {
    /**
     * Whether or not the step is valid, enabling the next button.
     */
    isValid: boolean;
    /**
     * Whether or not the step is currently running an important process.
     */
    isBusy: boolean;
    /**
     *  Custom message when it's busy.
     */
    busyMessage?: string;
}
