/**
 * Strider - Protectorate heavy transport and siege unit
 * Mobile infantry bunker with siege capabilities and advanced battlefield support systems
 */
import { ProtectorateArmyUnit } from "../../../../defaults/protectorate.js";
import { Attack, Siege, Spell, Upgrade } from "../../../../engine/ability.js";
export declare class Strider extends ProtectorateArmyUnit {
    uuid: string;
    static src: string;
    get infuseCost(): number | undefined;
    readonly attacks: {
        attack: Attack;
    };
    readonly spells: {
        unload: Spell;
    };
    readonly sieges: {
        siegeMode: Siege;
    };
    readonly upgrades: {
        infantryArmor: Upgrade;
        fieldDeployment: Upgrade;
    };
    constructor();
}
export default Strider;
//# sourceMappingURL=strider.d.ts.map