import { Request, Response } from "express"; import http from "http"; export declare const fixUrl: (request: Request, res: Response, next: () => void) => void; export declare const localLibs: (dir: string) => Promise<(request: Request, response: Response, next: any) => Promise>; export declare const mapToCdn: (request: http.IncomingMessage, response: http.ServerResponse) => Promise | undefined;