/// import type { IAmazonHealth } from '../../domain'; export type MetricTypes = 'LoadBalancer' | 'TargetGroup'; export interface CustomHealthLink { type: string; href: string; text: string; } export interface IInstanceStatusProps { healthMetrics: IAmazonHealth[]; healthState: string; metricTypes: MetricTypes[]; customHealthUrl?: CustomHealthLink; privateIpAddress?: string; } export declare const InstanceStatus: ({ healthMetrics, healthState, metricTypes, customHealthUrl, privateIpAddress, }: IInstanceStatusProps) => JSX.Element;