import { n as RuntimeEnv } from "./runtime-BPmgxFyD.js"; //#region src/infra/transport-ready.d.ts type TransportReadyResult = { ok: boolean; error?: string | null; }; type WaitForTransportReadyParams = { label: string; timeoutMs: number; logAfterMs?: number; logIntervalMs?: number; pollIntervalMs?: number; abortSignal?: AbortSignal; runtime: RuntimeEnv; check: () => Promise; }; declare function waitForTransportReady(params: WaitForTransportReadyParams): Promise; //#endregion export { WaitForTransportReadyParams as n, waitForTransportReady as r, TransportReadyResult as t };