/// import type { QueryArtifact, QueryArtifactVersion } from '../types'; export interface IPendingVersionsProps { artifact: QueryArtifact; title: string; versions?: QueryArtifactVersion[]; isDeploying?: boolean; } export declare const ArtifactVersions: ({ artifact, versions, title, isDeploying }: IPendingVersionsProps) => JSX.Element;