export declare const ApplicationEngineType: {
    readonly Microfocus: "microfocus";
    readonly Bluage: "bluage";
};
export type ApplicationEngineType = (typeof ApplicationEngineType)[keyof typeof ApplicationEngineType];
export declare const EnvironmentEngineType: {
    readonly Microfocus: "microfocus";
    readonly Bluage: "bluage";
};
/**
 * The target platform for the environment.
 */
export type EnvironmentEngineType = (typeof EnvironmentEngineType)[keyof typeof EnvironmentEngineType];
export declare const EnvironmentNetworkType: {
    readonly Ipv4: "ipv4";
    readonly Dual: "dual";
};
export type EnvironmentNetworkType = (typeof EnvironmentNetworkType)[keyof typeof EnvironmentNetworkType];
