import type { Response } from 'express'; import type { PipelineExecutionResult } from './types.js'; interface DispatchOptions { forceSSE?: boolean; entryEndpoint?: string; sseTotalTimeoutMs?: number; } export interface SsePayloadShape { __sse_responses?: unknown; } export declare function hasSsePayload(body: unknown): body is SsePayloadShape; export declare function isAnalysisModeEnabled(): boolean; export declare function sendPipelineResponse(res: Response, result: PipelineExecutionResult, requestId?: string, options?: DispatchOptions): void; export {};