import { RuntimeEngine, type AnyEnvironment, type FeatureClass, type Running } from '@wixc3/engine-core'; import { type RunningFeatureOptions } from '@wixc3/engine-cli'; /** * get a running feature with no browser environment * this is used for running tests in node and only for tests * @param autoDisposeTimeout if false, will not dispose the engine after the test */ export declare function getRunningFeature(options: RunningFeatureOptions, autoDisposeTimeout?: false | number): Promise<{ runningApi: Running; engine: RuntimeEngine; /**@deprecated use engine.shutdown */ dispose: () => Promise; }>; //# sourceMappingURL=run-environment.d.ts.map