/**
 * Co-op Missions - All cooperative campaign missions
 *
 * This module exports all available co-op missions for ZeroSpace's
 * cooperative campaign mode. These missions feature different gameplay
 * types and can be played with multiple commanders working together.
 *
 * Mission Types:
 * - Escort: Protect and guide units to objectives
 * - Survival: Defend against waves of enemies
 * - Assault-Defense: Attack and defend simultaneously
 */
import criticalDelivery from "./coop/critical-delivery.js";
import frozenWatch from "./coop/frozen-watch.js";
import underFire from "./coop/under-fire.js";
export { criticalDelivery, frozenWatch, underFire };
export declare const escortMissions: (typeof criticalDelivery)[];
export declare const survivalMissions: (typeof frozenWatch)[];
export declare const assaultDefenseMissions: (typeof underFire)[];
export declare const allCoopMissions: (typeof criticalDelivery)[];
export default allCoopMissions;
//# sourceMappingURL=coop.d.ts.map