export declare class SlayerUnlock {
    name: string;
    cost: number;
    description: string;
    constructor(name: string, cost: number, description: string);
}
export declare const SlayerUnlocks: SlayerUnlock[];
