import { FrontendPluginInfoResolver } from '@backstage/frontend-app-api'; declare module '@backstage/frontend-plugin-api' { interface FrontendPluginInfo { /** * **DO NOT USE** * * This field is added in the example app to showcase module augmentation * for extending the plugin info in internal apps. It only exists as an * example in this project. */ exampleFieldDoNotUse?: string; } } export declare const pluginInfoResolver: FrontendPluginInfoResolver;