import type { Rarity } from '../../constants/reforge-types.js';
import type { Effect } from '../../effects/types.js';
/**
 * Compatibility helper for callers that only need the effects for a reforge id
 * at a host item rarity. Reforge behavior now lives on the class-backed
 * registry under `items/reforges/`.
 */
export declare function reforgeEffects(reforgeId: string, rarity: Rarity, sourceName?: string): Effect[];
