import { ICommand } from '@nodearch/command';
import { Logger } from '@nodearch/core';
import { TscService } from './tsc.service.js';
export declare class BuildCommand implements ICommand {
    private readonly tscService;
    private readonly logger;
    command: string;
    describe: string;
    aliases: string;
    constructor(tscService: TscService, logger: Logger);
    handler(): Promise<void>;
}
//# sourceMappingURL=build.command.d.ts.map