/**
 * Cultivator - Grell T0 special building
 * Bio-symbiotic structure with biomass generation and defensive turret capabilities
 */
import { Attack } from "../../../../engine/ability.js";
import type { HotKey, Tier } from "../../../../engine/core.js";
import { GrellSpecialBuilding } from "../../grell-classes.js";
export declare class Cultivator extends GrellSpecialBuilding {
    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 maxAddOns: number;
    readonly providesBiomass: number;
    readonly attacks: {
        attack: Attack;
    };
    constructor();
}
export default Cultivator;
//# sourceMappingURL=cultivator.d.ts.map