import { AnalyzedLootTable, Loot } from "./Loot"; /** * Analysis tool for data files. */ export declare class Analyzer { #private; /** * Create a new instance for analysis of data tables. * @param dataTables Data tables to be analyzed. * @param resolveLootBucketThreshhold Threshhold to resolve loot bucket references in loot table entries. Loot buckets with a number * of items larger than this threshhold are not resolved. */ constructor(dataTables: Loot, resolveLootBucketThreshhold: number); /** * Analyze the data tables. */ analyze(): AnalyzedLootTable[]; }