import { Rarity, type Reforge } from './reforge-types.js';
import { Stat } from './stats.js';
export * from './reforge-types.js';
/**
 * Compatibility registry for existing callers. Reforge definitions now live as
 * class instances under `items/reforges/`; this export keeps the old constants
 * import path stable.
 */
export declare const REFORGES: Record<string, Reforge>;
export declare const STAT_ICONS: Record<Stat, string>;
export declare const RARITY_COLORS: Record<Rarity, string>;
