import powerbi from "powerbi-visuals-api"; import IPromise = powerbi.IPromise; import LicenseNotificationType = powerbi.LicenseNotificationType; import IVisualLicenseManager = powerbi.extensibility.IVisualLicenseManager; import visual = powerbi.extensibility.visual; export declare class MockIVisualLicenseManager implements IVisualLicenseManager { getAvailableServicePlans(): IPromise; notifyLicenseRequired(notificationType: LicenseNotificationType): IPromise; notifyFeatureBlocked(tooltip: string): IPromise; clearLicenseNotification(): IPromise; }