import { FlowBase, httpInputSchema, httpOutputSchema, type FlowRunOptions } from '../../common'; export declare const plan: { readonly pre: ["parseInput", "router"]; readonly execute: ["handleRequest"]; readonly post: []; readonly finalize: ["cleanup"]; }; export declare const stateSchema: import("@frontmcp/lazy-zod").ZodObject<{ token: import("@frontmcp/lazy-zod").ZodOptional; isAuthenticated: import("@frontmcp/lazy-zod").ZodBoolean; requestType: import("@frontmcp/lazy-zod").ZodOptional>; }, import("zod/v4/core").$strip>; declare const name: "handle:stateless-http"; declare global { interface ExtendFlows { 'handle:stateless-http': FlowRunOptions; } } export default class HandleStatelessHttpFlow extends FlowBase { name: "handle:stateless-http"; parseInput(): Promise; router(): Promise; handleRequest(): Promise; } export {}; //# sourceMappingURL=handle.stateless-http.flow.d.ts.map