///
import { async, ZipEntry } from 'node-stream-zip';
export declare class Jar {
file: string;
protected zip: InstanceType;
protected constructor(file: string);
static open(file: string): Jar;
close(): Promise;
entries(path: string): Promise;
read(path: string | ZipEntry): Promise;
readJson(path: string | ZipEntry): Promise;
}
//# sourceMappingURL=jar.d.ts.map