import { BuilderContext } from '@angular-devkit/architect'; import { Observable } from 'rxjs'; import { JsonObject } from '@angular-devkit/core'; export interface CypressBuilderOptions extends JsonObject { baseUrl: string; cypressConfig: string; devServerTarget: string; headless: boolean; exit: boolean; parallel: boolean; record: boolean; key?: string; tsConfig: string; watch: boolean; browser?: string; env?: Record; spec?: string; copyFiles?: string; } declare const _default: import("@angular-devkit/architect/src/internal").Builder; export default _default; /** * @whatItDoes Compile the application using the webpack builder. * @param devServerTarget * @param isWatching * @param context * @private */ export declare function startDevServer(devServerTarget: string, isWatching: boolean, context: BuilderContext): Observable;