/**
 * Factory - Protectorate vehicle production facility
 * Tier 2 production building that manufactures combat vehicles and mechs
 */
import { ProtectorateProductionBuilding } from "../../protectorate-classes.js";
import type { Tier } from "../../../../engine/core.js";
export declare class Factory extends ProtectorateProductionBuilding {
    uuid: string;
    static src: string;
    readonly name: string;
    readonly tier: Tier;
    readonly unlocksMercTier: Tier | undefined;
    readonly hexiteCost: number;
    readonly fluxCost: number;
    readonly buildTime: number;
    constructor();
}
export default Factory;
//# sourceMappingURL=factory.d.ts.map