/**
 * Sabretooth - Kraegar's loyal companion beast
 * Unique rebuildable creature that grows stronger from allied beast deaths
 */
import { Attack, Passive } from "../../../../engine/ability.js";
import { LegionSpecialUnit } from "../../legion-classes.js";
import type { Tier } from "../../../../engine/core.js";
export declare class Sabretooth extends LegionSpecialUnit {
    uuid: string;
    static src: string;
    readonly rebuildTime: number;
    readonly rebuildable: boolean;
    readonly name: string;
    readonly tier: Tier;
    readonly hexiteCost: number;
    readonly fluxCost: number;
    readonly buildTime: number;
    readonly attacks: {
        attack: Attack;
    };
    readonly passives: {
        feed: Passive;
    };
    constructor();
}
export default Sabretooth;
//# sourceMappingURL=sabretooth.d.ts.map