import { type CachedItemStructure } from '../cached-item-structure.js';
import { type CacheTargetStructure } from '../cache-target-structure.js';
export declare class CachedItem implements CachedItemStructure {
    readonly target: CacheTargetStructure;
    readonly localPath: string;
    readonly cachedAt: string;
    constructor(target: CacheTargetStructure, localPath: string, cachedAt: string);
}
