/**
 * Marran Badger - T2 heavy defensive unit with anti-air capabilities
 * Foundational defensive unit that embodies Marran isolationist philosophy
 */
import { Attack } from "../../../../engine/ability.js";
import { MarranMercUnit } from "../../marran-classes.js";
import type { Tier } from "../../../../engine/core.js";
export declare class MarranBadger extends MarranMercUnit {
    uuid: string;
    static src: string;
    readonly name: string;
    readonly tier: Tier;
    readonly buildCount: number;
    readonly hexiteCost: number;
    readonly fluxCost: number;
    readonly attacks: {
        attack: Attack;
    };
    constructor();
}
export default MarranBadger;
//# sourceMappingURL=marran-badger.d.ts.map