import type { Request } from "express"; import type { FetchedCurrencies } from "./Currency"; export declare type Query = Record; declare type RenderProps = unknown; export declare type InfoParams = { req: Request; query: Query; renderProps: RenderProps; lang: string; currencies: FetchedCurrencies; filteredCurrencies: FetchedCurrencies; paymentConfig: string; brandingId: string; }; export declare type ReqOutput = { ip: string; country: string; currency: string; userId: string; affiliate: string; geo: string; pageViewId: string; userAgent: string; feedbackToken: string; pageName: string; pageNamesPath: string; pathName: string; userAgentNotSupported: boolean; ui: string; disableServices: string; enableServices: string; enableServicesSwitching: string; isAutomatedTest: boolean; isIframeSubdomain: boolean; paymentConfig: string; }; export {};