interface EncodingData {
    eSpec: string[];
    cKey2FileSize: Map<string, number>;
    cKey2EKey: Map<string, string | string[]>;
    eKey2ESpecIndex: Map<string, number>;
    eKey2FileSize: Map<string, number>;
}
declare const parseEncodingFile: (inputBuffer: Buffer, eKey: string, cKey: string) => EncodingData;
export default parseEncodingFile;
export type { EncodingData };
//# sourceMappingURL=encodingFile.d.ts.map