/**
 * Arandi Shade - Corrupted interdimensional stealth unit
 * Fallen Arandi warriors possessed by entities from dimensional realms
 * Masters of phased movement and posthumous revenge
 */
import { Attack } from "../../../../engine/ability.js";
import type { HotKey, Tier } from "../../../../engine/core.js";
import { ArandiMercUnit } from "../../arandi-classes.js";
declare class ArandiShade extends ArandiMercUnit {
    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: {
        shadowCleave: Attack;
    };
    constructor();
}
export default ArandiShade;
//# sourceMappingURL=arandi-shade.d.ts.map