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