import { Skill } from '../Skill';
/**
 * Attack skill in OSRS
 * The Attack skill determines a player's accuracy and ability to wield certain weapons.
 * As players level up their Attack skill, they unlock the ability to use more powerful weapons with higher attack bonuses.
 * This class implements the Skill interface and includes specific unlocks related to the Attack skill.
 */
export declare class Attack implements Skill {
    level: number;
    experience: number;
    name: string;
    unlocks: any[];
    constructor();
}
//# sourceMappingURL=Attack.d.ts.map