import type { Request } from "express"; /** * @deprecated * * Refactor `express` functions to be framework-agnostic */ declare const getLogGlobalsFromRequest: (req: Request) => { ip: string; visitorId: string; /** @deprecated use visitorId */ userId: string; exponeaCookie: string; affilId: string; isLoggedIn: boolean; }; export default getLogGlobalsFromRequest;