import { Express, NextFunction, Request, Response } from 'express'; export declare const healthz: (app: Express) => void; export declare const poweredBy: (name: string) => (req: Request, res: Response, next: NextFunction) => Promise; export declare const trustProxy: (app: Express, trustProxy?: boolean) => void;