import type { RequestHandler } from "express"; import { IAPIFunctionWarning } from "./config"; import type { IGatsbyFunction } from "../../redux/types"; interface ICreateMiddlewareConfig { getFunctions: () => Array; prepareFn?: (functionObj: IGatsbyFunction) => Promise | void; showDebugMessageInResponse?: boolean; } export declare function printConfigWarnings(warnings: Array, functionObj: IGatsbyFunction): void; export declare function functionMiddlewares(middlewareConfig: ICreateMiddlewareConfig): Array; export {};