/**
 * Arandi Nullseer - Psychic interdimensional support unit
 * Warrior-scholars who interface with quantum consciousness fields
 * Masters of cross-dimensional mind control and battlefield support
 */
import { Attack, Spell } from "../../../../engine/ability.js";
import { ArandiMercUnit } from "../../arandi-classes.js";
import type { Tier, HotKey } from "../../../../engine/core.js";
declare class ArandiNullseer 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: {
        attack: Attack;
    };
    readonly spells: {
        mindControl: Spell;
    };
    constructor();
}
export default ArandiNullseer;
//# sourceMappingURL=arandi-nullseer.d.ts.map