import type { ExpressApp } from "../../RestApi"; import type { Express } from "express"; export declare const getRouter: (app: ExpressApp | Express) => { getStack: () => { name: string; handle: import("../../SchemaWatch/SchemaWatch").VoidFunction; path: undefined; keys?: any[]; route?: { path?: string; methods?: { get?: boolean; post?: boolean; put?: boolean; delete?: boolean; }; }; }[]; router: { stack?: { name: string; handle: import("../../SchemaWatch/SchemaWatch").VoidFunction; path: undefined; keys?: any[]; route?: { path?: string; methods?: { get?: boolean; post?: boolean; put?: boolean; delete?: boolean; }; }; }[]; }; }; export declare const removeExpressRoute: (app: ExpressApp | Express | undefined, _routePaths: (string | undefined)[], method?: "get" | "post" | "put" | "delete") => void; export declare const removeExpressRoutesTest: (app: ExpressApp | Express) => Promise; //# sourceMappingURL=removeExpressRoute.d.ts.map