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 RedundancyState: {
    /**
     * Resource is zone redundant
     */
    readonly Zonal: "Zonal";
    /**
     * Resource is not redundant
     */
    readonly None: "None";
};
/**
 * Zone redundancy state for resources
 */
export type RedundancyState = (typeof RedundancyState)[keyof typeof RedundancyState];
export declare const ResourceState: {
    /**
     * Resource is in active state
     */
    readonly Active: "Active";
    /**
     * Resource is in inactive state
     */
    readonly Inactive: "Inactive";
};
/**
 * State of the resource
 */
export type ResourceState = (typeof ResourceState)[keyof typeof ResourceState];
export declare const SkuTier: {
    readonly Free: "Free";
    readonly Basic: "Basic";
    readonly Standard: "Standard";
    readonly Premium: "Premium";
};
/**
 * This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
 */
export type SkuTier = (typeof SkuTier)[keyof typeof SkuTier];
