export declare const choices: {
    agree: string;
    decline: string;
    view: string;
};
type DecisionType = typeof choices.agree | typeof choices.decline;
export declare function askForEula(): Promise<void>;
export declare function displayEulaView(): Promise<DecisionType>;
export declare function generateEula(): void;
export declare function hasLicenseAgreement(): boolean;
export {};
