import type { IExecutableApplication, IFeatureTarget } from './types.js'; export declare const OUTPUT_PATH: string; export declare class ManagedRunEngine implements IExecutableApplication { private options; private ready; private runMetadata; constructor(options: { skipBuild: boolean; allowStale: boolean; }); init(): Promise; private build; getServerPort(): Promise; runFeature({ featureName, configName, overrideConfig, runtimeOptions }: IFeatureTarget): Promise<{ featureName: string; configName: string; url: string; dispose: () => Promise; getMetrics: () => Promise<{ marks: PerformanceEntry[]; measures: PerformanceEntry[]; }>; }>; closeServer(): Promise; } //# sourceMappingURL=engine-app-manager.d.ts.map