/**
 * Dread Raider - Fast T1 scout unit with thieve ability
 * Fast-moving operative who redistributes wealth through hit-and-run tactics
 */
import { Attack, Spell } from "../../../../engine/ability.js";
import type { HotKey, Tier } from "../../../../engine/core.js";
import { DreadRaidersMercUnit } from "../../dread-classes.js";
declare class DreadRaider extends DreadRaidersMercUnit {
    uuid: string;
    static src: string;
    readonly name: string;
    readonly tier: Tier;
    readonly hotkey: HotKey;
    readonly hexiteCost: number;
    readonly fluxCost: number;
    readonly buildTime: number;
    readonly buildCount: number;
    readonly attacks: {
        attack: Attack;
    };
    readonly spells: {
        thieve: Spell;
    };
    constructor();
}
export default DreadRaider;
//# sourceMappingURL=dread-raider.d.ts.map