///
/** @public */
export declare const newRelicDashboardPlugin: import("@backstage/core-plugin-api").BackstagePlugin<{
root: import("@backstage/core-plugin-api").RouteRef;
}, {}>;
/** @public */
export declare const EntityNewRelicDashboardContent: () => import("react").JSX.Element;
/** @public */
export declare const EntityNewRelicDashboardCard: () => import("react").JSX.Element;
/**
* Render dashboard snapshots from Newrelic in backstage. Use dashboards which have the tag `isDashboardPage: true`
*
* @remarks
* This can be helpful for rendering dashboards outside of Entity Catalog.
*
* @public
*/
export declare const DashboardSnapshot: (props: {
guid: string;
name: string;
permalink: string;
}) => import("react").JSX.Element;
/**
* Render dashboard snapshots from Newrelic in backstage. Use dashboards which have the tag `isDashboardPage: true`
*
* @deprecated
* Use DashboardSnapshot export name instead
*
* @public
*/
export declare const DashboardSnapshotComponent: (props: {
guid: string;
name: string;
permalink: string;
}) => import("react").JSX.Element;
/**
* Render a dashboard snapshots list from Newrelic in backstage. Use dashboards which have the tag `isDashboardPage: true`
*
* @remarks
* This can be helpful for rendering dashboards outside of Entity Catalog.
*
* @public
*/
export declare const DashboardSnapshotList: (props: {
guid: string;
}) => import("react").JSX.Element;