import { GlideRecord } from "../types/GlideRecord"; export declare class UpgradePlanAPI { canPublishUpgradePlan(planSysId?: string): boolean; canReprocessUpgradePlan(planSysId?: string): boolean; cleanupUpgradePlanSources(upgradePlanSysId?: string): void; createUpgradePlan(): string; exportUpgradePlan( upgradePlanSysId?: string, upgradePlanName?: string, targetVersion?: string ): any; getRetrieveUpgradePlanUrl(): string; getScope(planItem?: GlideRecord): string; getUpgradePlanItemValidation(planItem?: GlideRecord): any; hasErrorUpgradePlanItems(planSysId?: string): boolean; hasUpgradePlan(): boolean; installUpgradePlan(planSysId?: string): string; isUpgradePlanInstalled(planSysId?: string): boolean; processUpgradePlan(pluginId?: string): string; processUpgradePlanSkipPreview(pluginId?: string): string; publishUpgradePlan(planSysId?: string): string; refreshUpgradePlan(releaseTarget?: string): string; reprocessUpgradePlan(planSysId?: string): string; reprocessUpgradePlanSkipPreview(planSysId?: string): string; constructor(); }