/// import type { IInstance } from '../../domain'; export interface Insight { label: string; url: string; } export interface IInstanceInsightsProps { analytics?: boolean; insights: Insight[]; instance: IInstance; title?: string; } export declare const InstanceInsights: ({ analytics, insights, instance, title }: IInstanceInsightsProps) => JSX.Element;