/**
 * TriArch I'Olin - Arandi Hero
 * One of the three supreme leaders of the ancient Arandi Empire
 * Master of interdimensional energy and space-time manipulation
 */
import { Attack, Spell } from "../../../../engine/ability.js";
import { ArandiHeroUnit } from "../../arandi-classes.js";
import type { HotKey } from "../../../../engine/core.js";
declare class TriarchIolin extends ArandiHeroUnit {
    uuid: string;
    static src: string;
    readonly name: string;
    readonly hotkey: HotKey;
    readonly attacks: {
        attack: Attack;
    };
    readonly spells: {
        singularity: Spell;
        teleport: Spell;
    };
    constructor();
}
export default TriarchIolin;
//# sourceMappingURL=triarch-iolin.d.ts.map