import express from 'express'; export declare type ContextConfigType = { scanDirs?: Array; }; export declare type ConstructorType = { new (): any; [prop: string]: any; }; export declare type PojoType = { [prop: string]: any; }; export declare type HttpFunctionType = { (req: express.Request, res: express.Response): any; }; export declare type MysqlConnectOptionType = { host: string; user: string; password: string; database: string; connectionLimit?: number; queueLimit?: number; };