import { CommandService } from '../../services/CommandService';
export default class GoFixture {
    private cmdService;
    constructor(cmdService: CommandService);
    initGoProject(name?: string): Promise<string>;
    setCwd(dir: string): void;
    exec(command: string, arg1: string): Promise<{
        stdout: string;
    }>;
    private buildEnv;
    vet(): Promise<void>;
}
