import type { MonsterLevel, MonsterStatMultipliers } from './types';
/**
 * !Defense multipliers may not be 100% accurate for some levels
 * This dataset was likely derived by examining the pre-defined quest files. Not all levels were accounted for.
 * The dataset was expanded by manually checking the HP and stagger limits of missing level definitions.
 *
 * - The lowest "real" low rank quest is level `23` (but it appears it can go down to `19`)
 * - The lowest "real" high rank quest is level `44` (but it appears it can go down to `41`)
 */
export declare const MonsterLevelData: Readonly<Record<MonsterLevel, MonsterStatMultipliers>>;
