import { ImageReference } from './image-reference';
export declare class CacheEntryReference {
    image?: ImageReference | undefined;
    constructor(image?: ImageReference | undefined);
    static fromJson(json: CacheEntryReference): CacheEntryReference;
    toJson(): Record<string, unknown>;
}
