import { AdapterInterface } from './AdapterInterface'; import { Container, Type } from '../Utility'; import * as express from 'express'; export declare class ExpressAdapter implements AdapterInterface { protected express: express.Application; protected container: Container; constructor(); register(app: Type, container: Container): any; configure(cb: (container: Container) => void): void; private registerRoutes; private handleResponse; private applyLogger; }