import type { IncomingMessage, ServerResponse } from "node:http"; import { type WorkflowService } from "../workflows/service.js"; import { type ParsedRoute } from "./route-helpers.js"; export interface WorkflowApiOptions { service: WorkflowService; authenticated: boolean; } export declare function handleWorkflowApi(req: IncomingMessage, res: ServerResponse, route: ParsedRoute, options: WorkflowApiOptions): Promise; //# sourceMappingURL=workflow-api.d.ts.map