interface InstallTag {
    name: string;
    type: number;
    files: boolean[];
}
interface InstallFile {
    name: string;
    hash: string;
    size: number;
    tags: InstallTag[];
}
interface InstallData {
    tags: InstallTag[];
    files: InstallFile[];
}
declare const parseInstallFile: (inputBuffer: Buffer, eKey: string, cKey: string) => InstallData;
export default parseInstallFile;
export type { InstallFile, InstallData };
//# sourceMappingURL=installFile.d.ts.map