import type { Uint8ArrayLike } from "@tai-kun/surrealdb/types"; import { StatefulPromise } from "@tai-kun/surrealdb/utils"; import { type DecoderOptions } from "./decoder"; export interface DecodeStreamOptions extends DecoderOptions { readonly signal?: AbortSignal | undefined; } export default function decodeStream(input: ReadableStream, options?: DecodeStreamOptions | undefined): StatefulPromise; //# sourceMappingURL=decode-stream.d.ts.map