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