export declare class InvalidOnDiskCacheKeyError extends Error {
    constructor({ key }: {
        key: string;
    });
}
export declare const assertIsValidOnDiskCacheKey: ({ key }: {
    key: string;
}) => void;
