/**
 * Identifies the cache domain an item belongs to.
 *
 * IMAGE:
 *   Docker / OCI image artifacts.
 *
 * HELM_CHART:
 *   Helm chart artifacts pulled from OCI registries or chart repositories.
 */
export declare enum CacheArtifactEnum {
    IMAGE = "images",
    HELM_CHART = "charts"
}
