/** * Builds a URL from all path parts passed to the function. * @param {...(string | number)} path - A part of the URL. * @param {Record} params - Params, headers, and other options supported by fetch. * @return {string} */ declare function buildUrl(...args: (string | number | Record)[]): string; export { buildUrl }; //# sourceMappingURL=urlHelpers.d.ts.map