import { CommandService } from './CommandService';
import LintService from './LintService';
export default class BuildService {
    set cwd(cwd: string);
    get cwd(): string;
    private commandService;
    private lintService;
    constructor(commandService: CommandService, lintService: LintService);
    build(options?: {
        shouldFixLintFirst?: boolean;
    }): Promise<{
        stdout: string;
    }>;
}
