import { Effect, EffectType } from './types'; export declare const effectsLibrary: { buffs: Effect[]; debuffs: Effect[]; registry: Map; }; export declare const lookupEffect: (effectId: string) => Effect | undefined; export declare const getEffectByName: (name: string) => Effect | undefined; export declare const getEffectsByType: (type: EffectType) => Effect[]; //# sourceMappingURL=effects.library.d.ts.map