import type { Application, Request, RequestHandler } from 'express'; export type GetUrlFunction = (req: Request) => string; export declare const skipLogging: RequestHandler; export declare const setupRequestLogging: (app: Application, getUrl: GetUrlFunction) => void;