/** * gzip compression used by CosmWasm for reducing the transaction size when uploading Wasm blobs to chain. * This function is use case specific and not meant for large input sizes or other requirements you might have * outside of CosmWasm. */ export declare function gzip(uncompressed: Uint8Array): Promise;