/** * vapor-chamber — URL builder + query params * * Internal module used by createHttpClient. Not exported publicly. * SSR-safe: guards typeof window for URL constructor origin. */ /** * Build a full URL from path, optional baseURL, and optional query params. * * Handles: scalar values, arrays (`key[0]`), nested objects (`key[subkey]`), * null/undefined filtering. */ export declare function buildFullUrl(url: string, baseURL?: string, params?: Record): string; //# sourceMappingURL=http-query.d.ts.map