/// /// import type { System } from "./system"; import type { RequestHandler, Request } from "express"; export interface ExpresConfig { systemTimeout?: number; } export declare const Express: { actionFromRequest: (req: Request) => { type: string; payload: { method: string; headers: import("http").IncomingHttpHeaders; query: import("qs").ParsedQs; parentParams: import("express-serve-static-core").ParamsDictionary; body: any; }; }; middleware: (system: System, config?: ExpresConfig) => RequestHandler; }; //# sourceMappingURL=plugins.d.ts.map