import { Dependencies } from "../dependencies";
import { Command } from "./command";
export interface CIOptions {
    tests?: boolean;
    format?: boolean;
    coverage?: boolean;
    compileLimit: number;
    disabledProjects?: string[];
}
export declare function createCICommand(deps: Dependencies): Command<CIOptions>;
