import type { ResourceWithId } from "./resource"; export declare enum UpgradeNotificationMode { AlwaysShow = "AlwaysShow", ShowOnlyMajorMinor = "ShowOnlyMajorMinor", NeverShow = "NeverShow" } export interface UpgradeConfigurationResource extends ResourceWithId { NotificationMode: UpgradeNotificationMode; }