export declare const AllowCrashDumpCollection: {
    /**
     * Crash dump collection enabled
     */
    readonly Enabled: "Enabled";
    /**
     * Crash dump collection disabled
     */
    readonly Disabled: "Disabled";
};
/**
 * Flag to define if the user allows for crash dump collection.
 */
export type AllowCrashDumpCollection = (typeof AllowCrashDumpCollection)[keyof typeof AllowCrashDumpCollection];
export declare const OSFeedType: {
    /**
     * Retail OS feed type.
     */
    readonly Retail: "Retail";
    /**
     * Retail evaluation OS feed type.
     */
    readonly RetailEval: "RetailEval";
};
/**
 * Operating system feed type of the device group.
 */
export type OSFeedType = (typeof OSFeedType)[keyof typeof OSFeedType];
export declare const RegionalDataBoundary: {
    /**
     * No data boundary
     */
    readonly None: "None";
    /**
     * EU data boundary
     */
    readonly EU: "EU";
};
/**
 * Regional data boundary for an image
 */
export type RegionalDataBoundary = (typeof RegionalDataBoundary)[keyof typeof RegionalDataBoundary];
export declare const UpdatePolicy: {
    /**
     * Update all policy.
     */
    readonly UpdateAll: "UpdateAll";
    /**
     * No update for 3rd party app policy.
     */
    readonly No3rdPartyAppUpdates: "No3rdPartyAppUpdates";
};
/**
 * Update policy of the device group.
 */
export type UpdatePolicy = (typeof UpdatePolicy)[keyof typeof UpdatePolicy];
