/** The installer state */
export declare type IState<T = void> = {
    type: "configuring" | "loading" | "finished";
    name: string;
} | {
    type: "prompt";
    text: string;
    buttons: {
        value: T;
        text: string;
        type: "primary" | "secondary";
    }[];
};
//# sourceMappingURL=IState.d.ts.map