/**
 * Exalted - Elite mounted scout with devastating spear attacks
 * Swift reconnaissance unit with powerful spear attacks and crowd control abilities
 */
import { Attack, Passive, Spell } from "../../../../engine/ability.js";
import { LegionArmyUnit } from "../../legion-classes.js";
import type { Tier } from "../../../../engine/core.js";
export declare class Exalted extends LegionArmyUnit {
    uuid: string;
    static src: string;
    readonly name: string;
    readonly tier: Tier;
    readonly hexiteCost: number;
    readonly fluxCost: number;
    readonly buildTime: number;
    readonly buildCount: number;
    readonly attacks: {
        spearThrow: Attack;
    };
    readonly spells: {
        maul: Spell;
    };
    readonly passives: {
        healthRegeneration: Passive;
    };
    constructor();
}
export default Exalted;
//# sourceMappingURL=exalted.d.ts.map