/**
 * Root Colony - Foundational Grell base building
 * The living heart of Grell expansion with unit production, biomass generation, and defensive capabilities
 */
import { Attack, Spell } from "../../../../engine/ability.js";
import type { HotKey } from "../../../../engine/core.js";
import { Tier } from "../../../../engine/core.js";
import { GrellBaseBuilding } from "../../grell-classes.js";
export declare class RootColony extends GrellBaseBuilding {
    uuid: string;
    static src: string;
    readonly name: string;
    readonly tier: Tier;
    readonly hp: number;
    readonly shields: number;
    armor: number;
    hotkey: HotKey;
    readonly maxAddOns: number;
    readonly providesBiomass: number;
    unlocksMercTier: Tier;
    description: string;
    readonly attacks: {
        attack: Attack;
    };
    readonly spells: {
        homeBase: Spell;
    };
    constructor();
}
export default RootColony;
//# sourceMappingURL=root-colony.d.ts.map