import { BaseCommand } from '@adonisjs/core/build/standalone';
import { CacheStoresList } from '@ioc:Adonis/Addons/Cache';
export default class Forget extends BaseCommand {
    static commandName: string;
    static description: string;
    static settings: {
        loadApp: boolean;
        stayAlive: boolean;
    };
    key: string;
    store?: keyof CacheStoresList;
    run(): Promise<void>;
}
