export = managementApi; /** * @param {express.Router} router * @param {object} config * @param {Function} config.healthHandler * @param {Function} config.livenessHandler * @param {Function} config.readinessHandler * @param {Function} config.infoHandler * @param {string} config.routePrefix * @returns {void} */ declare function managementApi(router: express.Router, { healthHandler, livenessHandler, readinessHandler, infoHandler, routePrefix }?: { healthHandler: Function; livenessHandler: Function; readinessHandler: Function; infoHandler: Function; routePrefix: string; }): void;