import { JsonObject } from '@angular-devkit/core'; export interface JestBuilderOptions extends JsonObject { codeCoverage?: boolean; jestConfig: string; testFile?: string; setupFile?: string; tsConfig: string; bail?: number; ci?: boolean; color?: boolean; clearCache?: boolean; json?: boolean; maxWorkers?: number; onlyChanged?: boolean; outputFile?: string; passWithNoTests?: boolean; runInBand?: boolean; silent?: boolean; testNamePattern?: string; updateSnapshot?: boolean; useStderr?: boolean; watch?: boolean; watchAll?: boolean; } declare const _default: import("@angular-devkit/architect/src/internal").Builder; export default _default;