import { Channel } from "@effect/core/stream/Channel/definition/base"; import { Cause } from "@effect/core/io/Cause/definition"; /** * Reads an input and continue exposing both full error cause and completion. * @tsplus static effect/core/stream/Channel.Ops readWithCause * @tsplus location "@effect/core/stream/Channel/operations/readWithCause" */ export declare function readWithCause(input: (i: InElem) => Channel, halt: (e: Cause) => Channel, done: (d: InDone) => Channel): Channel; //# sourceMappingURL=readWithCause.d.ts.map