import { Application, Router } from "express-serve-static-core"; export interface IExpressProvide { displayName?: string; __express_provide(app: Application | Router): void | Promise; } export declare function provideWithExpress(app: Application | Router, provider: IExpressProvide): void;