declare function isProbablyUrl(s: unknown): boolean; /** * Resolves the final tracking URL. * * `server_container_url` is required and is treated as the final endpoint URL. * Examples: * - Cloud: "https://global.t.d8a.tech//d/c" * - On-prem: "https://example.org/d/c" */ export declare function resolveTrackingUrl(configOrUrl?: unknown): string; export declare const __internal: { isProbablyUrl: typeof isProbablyUrl; }; export {};