/// import type { QueryArtifactVersionTask } from '../types'; import './ArtifactVersionTasks.less'; export interface ITaskArtifactVersionProps { environment: string; version: string; reference: string; isCurrent?: boolean; } interface IBaseTaskProps { type: string; artifact: ITaskArtifactVersionProps; } interface IArtifactVersionTasksProps extends IBaseTaskProps { tasks?: QueryArtifactVersionTask[]; } export declare const ArtifactVersionTasks: ({ tasks, ...restProps }: IArtifactVersionTasksProps) => JSX.Element; export {};