/**
 * Maximum size of a single data-stream chunk in bytes, and the budget used to decide whether a
 * payload can be sent inline as a single header packet. Kept below the ~16k data-channel MTU to
 * leave headroom for protocol framing and E2EE overhead.
 *
 * @internal
 */
export declare const STREAM_CHUNK_SIZE_BYTES = 15000;
/**
 * Default cap on the number of decompressed bytes a single incoming compressed data stream may
 * produce (5 GB). A tiny compressed payload can inflate to an arbitrarily large output
 * (decompression bomb), so the decompressor's output is bounded rather than trusting the wire
 * size; streams exceeding the cap error with `PayloadTooLarge`.
 *
 * @internal
 */
export declare const DEFAULT_MAX_PAYLOAD_BYTE_LENGTH = 5000000000;
//# sourceMappingURL=constants.d.ts.map
