export declare const ResourceIdentityType: {
    readonly SystemAssigned: "SystemAssigned";
    readonly UserAssigned: "UserAssigned";
    readonly SystemAssigned_UserAssigned: "SystemAssigned, UserAssigned";
    readonly None: "None";
};
/**
 * The identity type. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the Azure Health Bot
 */
export type ResourceIdentityType = (typeof ResourceIdentityType)[keyof typeof ResourceIdentityType];
export declare const SkuName: {
    readonly F0: "F0";
    readonly S1: "S1";
    readonly C0: "C0";
    readonly PES: "PES";
    readonly C1: "C1";
};
/**
 * The name of the Azure Health Bot SKU
 */
export type SkuName = (typeof SkuName)[keyof typeof SkuName];
