export type DispatchGatewayEnvelopeInput = { dispatchId?: string; dispatchMode: string; route: "mission-control.next-up.play" | "mission-control.auto-continue.start"; source: "manual_play" | "auto_continue_start"; initiativeId: string; workstreamId?: string | null; workstreamIds?: string[] | null; taskIds?: string[] | null; }; export declare function buildDispatchGatewayEnvelope(input: DispatchGatewayEnvelopeInput): { readonly dispatchId: string; readonly dispatchMode: string; readonly executionPath: "orgx_orchestrator_gateway"; readonly dispatchGateway: "orchestrator-agent"; readonly dispatchLineage: { readonly route: "mission-control.next-up.play" | "mission-control.auto-continue.start"; readonly source: "manual_play" | "auto_continue_start"; readonly dispatchedAt: string; readonly initiativeId: string; readonly workstreamId: string | null; readonly workstreamIds: string[]; readonly taskIds: string[]; }; };