import { LootBucket, LootTable } from "./Loot"; export declare class LootParser { #private; /** * Parse a loot table file. * * @param lootTablesFile Path to the loot table file. * @returns Loot tables contained in the file. */ parseLootTables(lootTablesFile: string): LootTable[]; /** * Load and parse a loot bucket file. * * @param bucketFile Path to the loot bucket file. * @returns Loot buckets in the file. */ parseLootBuckets(bucketFile: string): LootBucket[]; }