/** * Convenance utilities for Docker input and output streams. * * @since 1.0.0 */ import type * as Chunk from "effect/Chunk"; import type * as Effect from "effect/Effect"; import type * as Scope from "effect/Scope"; import type * as Sink from "effect/Sink"; import type * as Stream from "effect/Stream"; import type * as MobySchemas from "./MobySchemas.ts"; /** * Waits for the progress stream to complete and returns the result. * * @since 1.0.0 * @category Conveyance Sinks */ export declare const waitForProgressToComplete: (stream: Stream.Stream) => Effect.Effect, E1, Exclude>; /** * Consumes the progress stream and logs it to the console. * * @since 1.0.0 * @category Conveyance Sinks */ export declare const followProgressSink: Sink.Sink; /** * Tracks the progress stream in the console and returns the result. * * @since 1.0.0 * @category Conveyance Sinks */ export declare const followProgressInConsole: (stream: Stream.Stream) => Effect.Effect, E1, Exclude>;