/**
 * Cha'Kru Hatun - Elite warrior-shaman with dimensional rift powers through Wurm Bonding ritual
 * Massive elite unit that can manipulate spatial dimensions through Leviathan blood mysticism
 */
import { Attack, Spell } from "../../../../engine/ability.js";
import { ChakruMercUnit } from "../../chakru-classes.js";
import type { Tier, HotKey } from "../../../../engine/core.js";
declare class ChakruHatun extends ChakruMercUnit {
    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: {
        rift: Spell;
    };
    constructor();
}
export default ChakruHatun;
//# sourceMappingURL=chakru-hatun.d.ts.map