import type * as C from "../core.js"; import type { Emit } from "./_internal/Emit.js"; /** * Creates a stream from an asynchronous callback that can be called multiple times. * The optionality of the error type `E` can be used to signal the end of the stream, * by setting it to `None`. */ export declare function async(register: (emit: Emit) => void, outputBuffer?: number): C.Stream; //# sourceMappingURL=async.d.ts.map