/// import { ResourceType, DirEntry, ResourceDir, Resource } from '../Types/Resources'; export declare function readDirData(dirData: Buffer, resourceType: ResourceType): (DirEntry | undefined)[]; export declare function readV2Dir(path: string, resourceType: ResourceType): (DirEntry | undefined)[]; export declare function readV2ResourceDirs(gamePath: string): ResourceDir; export declare function readV3ResourceDir(gamePath: string, gameId: string): ResourceDir; export declare function readV2Resource(gamePath: string, dirEntry: DirEntry): Resource; export declare function readV3Resource(gamePath: string, dirEntry: DirEntry, gameId: string): Resource;