import { Command } from '@oclif/core';
export default class Remove extends Command {
    static description: string;
    static args: {
        name: string;
        required: boolean;
    }[];
    static examples: string[];
    run(): Promise<void>;
}
