///
import type { QueryArtifact } from '../types';
import './Artifact.less';
export declare const PinnedVersion: ({ version }: {
version: NonNullable;
}) => JSX.Element;
interface IArtifactProps {
artifact: QueryArtifact;
isPreview?: boolean;
}
export declare const Artifact: ({ artifact, isPreview }: IArtifactProps) => JSX.Element;
export {};