/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ export declare function compress(input: string | Uint8Array, algorithm?: "gzip" | "br"): Promise; export declare function decompress(input: Uint8Array, algorithm?: "gzip" | "br"): Promise; //# sourceMappingURL=compress.browser.d.ts.map