export declare const DISK_CACHE_SCHEMA_VERSION = 1;
export declare const CACHE_NAMESPACES: {
    readonly REGISTRY: "registry";
    readonly OSV: "osv";
    readonly TREE: "tree";
    readonly ALERTS: "alerts";
    readonly DECISIONS: "decisions";
};
export declare const CACHE_TTLS: {
    readonly REGISTRY: number;
    readonly OSV: number;
    readonly TREE: number;
    readonly ALERTS: number;
    readonly DECISIONS: number;
};
export declare const CACHE_NS_VERSIONS: {
    readonly REGISTRY: 1;
    readonly OSV: 1;
    readonly TREE: 1;
    readonly ALERTS: 1;
    readonly DECISIONS: 1;
};
export declare const LOCKFILE_NAMES: readonly ["bun.lock", "bun.lockb", "yarn.lock", "pnpm-lock.yaml", "package-lock.json"];
