export declare class SlayerExtend {
    name: string;
    cost: number;
    notes: string;
    constructor({ cost, name, notes, }: {
        name: string;
        cost: number;
        notes: string;
    });
    /**
     * Get the name of the Slayer Extend
     */
    getName(): string;
    /**
     * Get the cost of the Slayer Extend
     */
    getCost(): number;
    /**
     * Get the notes of the Slayer Extend
     */
    getNotes(): string;
}
export declare const SlayerExtends: SlayerExtend[];
