import type { CacheEventContract } from '@ioc:Adonis/Addons/Cache';
import CacheEvents from '../Enums/CacheEvents';
export default class CacheKeyForgotten implements CacheEventContract {
    key: string;
    EVENT: CacheEvents;
    constructor(key: string);
    toJSON(): {
        key: string;
    };
}
