import type { Request, Response, Router } from "express"; import { iRest } from "../types/ormInterfaces"; import { OrmGenerics } from "../types/ormGenerics"; export declare function restExpressRequest(routerConfig: { router: Pick; routePath?: string; } & Omit, "requestMethod" | "restModel">): void; export declare function ExpressHandler(configX: (() => Omit, "requestMethod" | "restModel">) | Omit, "requestMethod" | "restModel">): (req: Request, res: Response) => Promise;