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