export declare const OsType: {
    readonly Windows7: "Windows7";
    readonly WindowsServer2008: "WindowsServer2008";
    readonly WindowsServer2008R2: "WindowsServer2008R2";
};
/**
 * Type of OS for which the key is requested.
 */
export type OsType = (typeof OsType)[keyof typeof OsType];
export declare const SupportType: {
    readonly SupplementalServicing: "SupplementalServicing";
    readonly PremiumAssurance: "PremiumAssurance";
};
/**
 * Type of support
 */
export type SupportType = (typeof SupportType)[keyof typeof SupportType];
