import type { Uint8ArrayList } from 'uint8arraylist'; export interface ParseOptions { /** * Limit the possible size of incoming serialized messages in bytes */ maxMessageLength?: number; } export default function parse(source: AsyncIterable | Iterable, opts?: ParseOptions): AsyncGenerator; //# sourceMappingURL=parse.d.ts.map