import { Config } from './../config';
import { Executable } from './../executable';
export declare class RemoveCommand implements Executable {
    config: Config;
    reponame: string;
    constructor(config: Config);
    execute(params: any): Promise<void>;
    validate(params: any): boolean;
}
