/// import type { Application } from '../../application'; import type { IManagedResourceSummary } from '../../domain'; import './ManagedResourceStatusIndicator.less'; export interface IManagedResourceStatusIndicatorProps { shape: 'square' | 'circle'; resourceSummary: IManagedResourceSummary; application: Application; } export declare const ManagedResourceStatusIndicator: ({ shape, resourceSummary, application, }: IManagedResourceStatusIndicatorProps) => JSX.Element;