import { FlowBase, httpInputSchema, httpOutputSchema, type FlowRunOptions } from '../../common'; export declare const plan: { readonly pre: ["parseInput", "router"]; readonly execute: ["onInitialize", "onMessage", "onElicitResult"]; readonly post: []; readonly finalize: ["cleanup"]; }; export declare const stateSchema: import("@frontmcp/lazy-zod").ZodObject<{ token: import("@frontmcp/lazy-zod").ZodString; session: import("@frontmcp/lazy-zod").ZodObject<{ id: import("@frontmcp/lazy-zod").ZodString; payload: import("@frontmcp/lazy-zod").ZodOptional>; isPublic: import("@frontmcp/lazy-zod").ZodOptional; platformType: import("@frontmcp/lazy-zod").ZodOptional>; }, import("zod/v4/core").$strip>>; }, import("zod/v4/core").$strip>; requestType: import("@frontmcp/lazy-zod").ZodOptional>; }, import("zod/v4/core").$strip>; declare const name: "handle:legacy-sse"; declare global { interface ExtendFlows { 'handle:legacy-sse': FlowRunOptions; } } export default class HandleSseFlow extends FlowBase { parseInput(): Promise; router(): Promise; onInitialize(): Promise; onElicitResult(): Promise; onMessage(): Promise; } export {}; //# sourceMappingURL=handle.sse.flow.d.ts.map