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