/**
 * Slayer Unlocks Data
 * All unlock rewards available in the game
 * Reference: https://oldschool.runescape.wiki/w/Slayer#Rewards
 */
import { SlayerUnlock } from './SlayerUnlock';
export declare const SLAYER_UNLOCKS: SlayerUnlock[];
/**
 * Get an unlock by name (case insensitive)
 */
export declare function getUnlockByName(name: string): SlayerUnlock | undefined;
/**
 * Get all unlocks within a cost range
 */
export declare function getUnlocksByCostRange(minCost: number, maxCost: number): SlayerUnlock[];
/**
 * Get the total cost of multiple unlocks
 */
export declare function calculateUnlocksCost(names: string[]): number;
//# sourceMappingURL=unlocks.data.d.ts.map