export declare namespace CompressUtil {
    const gzip: (value: string) => Promise<Buffer>;
    const gunzip: (buffer: Buffer) => Promise<string>;
}
