/// import type { IManagedArtifactSummary, IManagedEnvironmentSummary } from '../../domain'; export interface ResourceDeploymentStatusProps { environment?: string; artifactVersionsByState?: IManagedEnvironmentSummary['artifacts'][0]['versions']; artifactDetails?: IManagedArtifactSummary; showReferenceName?: boolean; } export declare const ResourceDeploymentStatus: ({ environment, artifactVersionsByState, artifactDetails, showReferenceName, }: ResourceDeploymentStatusProps) => JSX.Element;