export declare const AccountConfiguration: {
    readonly Free: "Free";
    readonly Capacity: "Capacity";
};
/**
 * Account configuration. This can only be set at RecommendationsService Account creation.
 */
export type AccountConfiguration = (typeof AccountConfiguration)[keyof typeof AccountConfiguration];
export declare const ManagedServiceIdentityType: {
    readonly None: "None";
    readonly SystemAssigned: "SystemAssigned";
    readonly UserAssigned: "UserAssigned";
    readonly SystemAssigned_UserAssigned: "SystemAssigned,UserAssigned";
};
/**
 * Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
 */
export type ManagedServiceIdentityType = (typeof ManagedServiceIdentityType)[keyof typeof ManagedServiceIdentityType];
export declare const ModelingFeatures: {
    readonly Basic: "Basic";
    readonly Standard: "Standard";
    readonly Premium: "Premium";
};
/**
 * Modeling features controls the set of supported scenarios\models being computed. This can only be set at Modeling creation.
 */
export type ModelingFeatures = (typeof ModelingFeatures)[keyof typeof ModelingFeatures];
export declare const ModelingFrequency: {
    readonly Low: "Low";
    readonly Medium: "Medium";
    readonly High: "High";
};
/**
 * Modeling frequency controls the modeling compute frequency.
 */
export type ModelingFrequency = (typeof ModelingFrequency)[keyof typeof ModelingFrequency];
export declare const ModelingSize: {
    readonly Small: "Small";
    readonly Medium: "Medium";
    readonly Large: "Large";
};
/**
 * Modeling size controls the maximum supported input data size.
 */
export type ModelingSize = (typeof ModelingSize)[keyof typeof ModelingSize];
export declare const PrincipalType: {
    readonly Application: "Application";
    readonly User: "User";
};
/**
 * AAD principal type.
 */
export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
