///
interface PARQUET_COMPRESSION_METHODS {
[key: string]: {
deflate: (value: any) => Buffer | Promise;
inflate: (value: any) => Buffer | Promise;
};
}
export declare const PARQUET_COMPRESSION_METHODS: PARQUET_COMPRESSION_METHODS;
/**
* Deflate a value using compression method `method`
*/
export declare function deflate(method: string, value: unknown): Promise;
/**
* Inflate a value using compression method `method`
*/
export declare function inflate(method: string, value: unknown): Promise;
export {};