/** * Noah — Default Ethical Flight Plan * * The 7-waypoint default plan from MVP spec Section 4.1. * The Commander (Jessie) can customize all parameters. */ import type { EthicalFlightPlan, EthicalWaypoint, CorridorBounds } from '../types/flight-plan.js'; export declare const DEFAULT_CORRIDOR: CorridorBounds; export declare const DEFAULT_WAYPOINTS: EthicalWaypoint[]; /** * Create the default 7-waypoint ethical flight plan. * @param agentId The agent this plan is for * @param commanderId The commander who created it */ export declare function createDefaultFlightPlan(agentId: string, commanderId?: string): EthicalFlightPlan; //# sourceMappingURL=default-plan.d.ts.map