/**
 * Operating Tower - Protectorate command center
 * Main base building that serves as the faction's central command hub
 */
import { Spell } from "../../../../engine/ability.js";
import type { HotKey, Tier } from "../../../../engine/core.js";
import { ProtectorateBaseBuilding } from "../../protectorate-classes.js";
export declare class OperatingTower extends ProtectorateBaseBuilding {
    uuid: string;
    static src: string;
    readonly name: string;
    readonly tier: Tier;
    readonly hexiteCost: number;
    readonly fluxCost: number;
    readonly buildTime: number;
    readonly buildCount: number;
    readonly hotkey: HotKey;
    readonly spells: {
        homeBase: Spell;
    };
    constructor();
}
export default OperatingTower;
//# sourceMappingURL=operating-tower.d.ts.map