import { flags } from '@oclif/command';
import BaseCommand from '../utils';
export default class CleanupCommand extends BaseCommand {
    static flags: {
        unpin: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
        db: flags.IOptionFlag<string | undefined>;
        config: flags.IOptionFlag<string | undefined>;
        log: flags.IOptionFlag<string>;
        skipPrompt: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
        'log-filter': flags.IOptionFlag<string | undefined>;
        'log-path': flags.IOptionFlag<string | undefined>;
    };
    static description: string;
    static examples: string[];
    purgeDb(path: string): Promise<void>;
    private unpinAgreements;
    run(): Promise<void>;
}
