/**
 * Return a ReadableStream of bytes for the give file or URL path.
 * @param {string} path
 * @param {import('../types.js').LoadOptions} options
 * @returns {Promise<ReadableStream<Uint8Array>>}
 */
export function byteStream(path: string, { fetch: fopt, decompress }?: import("../types.js").LoadOptions): Promise<ReadableStream<Uint8Array>>;
