import { type CacheTargetStructure } from '../cache-target-structure.js';
import { type CacheArtifactEnum } from '../../enums/cache-artifact-enum.js';
export declare class CacheTarget implements CacheTargetStructure {
    readonly type: CacheArtifactEnum;
    readonly name: string;
    readonly version: string;
    readonly source?: string;
    constructor(type: CacheArtifactEnum, name: string, version: string, source?: string);
}
