export declare const B2CResourceSKUName: {
    /**
     * Azure AD B2C usage is billed to a linked Azure subscription and uses a monthly active users (MAU) billing model.
     */
    readonly Standard: "Standard";
    /**
     * Azure AD B2C usage is billed to a linked Azure subscription and uses number of authentications based billing.
     */
    readonly PremiumP1: "PremiumP1";
    /**
     * Azure AD B2C usage is billed to a linked Azure subscription and uses number of authentications based billing.
     */
    readonly PremiumP2: "PremiumP2";
};
/**
 * The name of the SKU for the tenant.
 */
export type B2CResourceSKUName = (typeof B2CResourceSKUName)[keyof typeof B2CResourceSKUName];
export declare const B2CResourceSKUTier: {
    /**
     * The SKU tier used for all Azure AD B2C tenants.
     */
    readonly A0: "A0";
};
/**
 * The tier of the tenant.
 */
export type B2CResourceSKUTier = (typeof B2CResourceSKUTier)[keyof typeof B2CResourceSKUTier];
export declare const CIAMResourceSKUName: {
    readonly Standard: "Standard";
    readonly PremiumP1: "PremiumP1";
    readonly PremiumP2: "PremiumP2";
};
/**
 * The name of the SKU for the tenant.
 */
export type CIAMResourceSKUName = (typeof CIAMResourceSKUName)[keyof typeof CIAMResourceSKUName];
export declare const CIAMResourceSKUTier: {
    /**
     * The SKU tier used for all Azure AD for customers tenants.
     */
    readonly A0: "A0";
};
/**
 * The tier of the tenant.
 */
export type CIAMResourceSKUTier = (typeof CIAMResourceSKUTier)[keyof typeof CIAMResourceSKUTier];
