import 'reflect-metadata'; import { NextFunction, Request, Response } from 'express'; import { Container } from '../Utility'; export declare const App: (options: { name: string; port: number; middleware?: ((req: Request, res: Response, next: NextFunction) => void)[]; publicDirectory?: string; configure?: (container: Container) => void; }) => ClassDecorator;