export declare const deflate: (bytes: Uint8Array) => Promise; export declare const inflate: (bytes: Uint8Array) => Promise; export declare const inflateAt: (bytes: Uint8Array, at: number) => { out: Uint8Array; end: number; };