import { StringOrNumber } from '../types/utility'; export declare class URLBuilder { protected baseUrl: string; /** * Creates an URL object with the given arguments * * @param path Array of path parts, eg: ['accounts', '1'] -> /accounts/1 * @param params Optional query params as key-value pairs (object). Undefined values will be removed. * @returns URL object, with path and query params set */ buildUrl(path: StringOrNumber[]): URL; private removeEmpty; }