import type { ExecutionTargetOutput as Target } from "@qawolf/flow-targets"; export { FailWithoutRetryError } from "./FailWithoutRetryError.js"; export { type TargetScope, configureTarget, getCurrentScope, resetTarget, } from "./targetScope.js"; export type { ExecutionTargetOutput as Target } from "@qawolf/flow-targets"; /** * Runtime target metadata for the currently executing flow. * * `platform.target` reads the configured execution target and throws if * none has been set. Each property access reads the current configuration, * so values stay correct across `configureTarget(...)` / `resetTarget()` * calls. * * The runner wires a default via `configureTarget(...)`; local callers can * set one themselves before running flow code. */ export declare const platform: { readonly target: Target; }; //# sourceMappingURL=index.d.ts.map