export declare const Distro: {
    readonly AKSEdge: "AKSEdge";
};
/**
 * Represents a supported Fabric/Infra. (AKSEdge etc...).
 */
export type Distro = (typeof Distro)[keyof typeof Distro];
export declare const Provider: {
    readonly VMWare: "VMWare";
    readonly HCI: "HCI";
    readonly SCVMM: "SCVMM";
};
/**
 * Information about the connected appliance.
 */
export type Provider = (typeof Provider)[keyof typeof Provider];
export declare const ResourceIdentityType: {
    readonly SystemAssigned: "SystemAssigned";
    readonly None: "None";
};
/**
 * The identity type.
 */
export type ResourceIdentityType = (typeof ResourceIdentityType)[keyof typeof ResourceIdentityType];
