import type { JsonObject } from '@backstage/types'; /** * @public */ export interface ClusterLinksFormatterOptions { dashboardUrl?: URL; dashboardParameters?: JsonObject; object: any; kind: string; } /** * @public */ export interface ClusterLinksFormatter { formatClusterLink(options: ClusterLinksFormatterOptions): Promise; }