import express, { Application } from 'express'; declare type AppDecorator = (app: Application) => Application; export default function server(): express.Application; export declare const applyMiddleware: AppDecorator; export {};