export declare const CapacitySkuTier: {
    readonly PBIE_Azure: "PBIE_Azure";
    readonly Premium: "Premium";
    readonly AutoPremiumHost: "AutoPremiumHost";
};
/**
 * The name of the Azure pricing tier to which the SKU applies.
 */
export type CapacitySkuTier = (typeof CapacitySkuTier)[keyof typeof CapacitySkuTier];
export declare const Mode: {
    readonly Gen1: "Gen1";
    readonly Gen2: "Gen2";
};
/**
 * Specifies the generation of the Power BI Embedded capacity. If no value is specified, the default value 'Gen2' is used. [Learn More](https://docs.microsoft.com/power-bi/developer/embedded/power-bi-embedded-generation-2)
 */
export type Mode = (typeof Mode)[keyof typeof Mode];
export declare const VCoreSkuTier: {
    readonly AutoScale: "AutoScale";
};
/**
 * The name of the Azure pricing tier to which the SKU applies.
 */
export type VCoreSkuTier = (typeof VCoreSkuTier)[keyof typeof VCoreSkuTier];
