import type { ExecutionTargetOutput } from "@qawolf/flow-targets"; import { type WebExpectAttributes } from "../web/expect/attributes.js"; /** * Runner-only bridge: the runner supplies runtime IO and target context, while * flows owns the platform APIs that user code imports. * * Web expect initialization is async because the playwright dependency is * loaded dynamically — keeping it out of the load graph for consumers of * `@qawolf/flows/web` that only need flow types or `testContextDependencies`. */ export declare function configureFlowRuntime({ target, webExpectAttributes, }: { target: ExecutionTargetOutput; webExpectAttributes?: Partial; }): Promise; //# sourceMappingURL=configureFlowRuntime.d.ts.map