export type IQueryParams = Record; export declare function buildQueryString(queryParams: IQueryParams, lowerCase?: boolean, disableCSV?: boolean): string; export declare function appendPath(paths: Array, builtUrl: string, lowerCase?: boolean): string; export declare function buildHash(hash: string | number, lowerCase?: boolean): string; interface IUrlOptions { path?: Array; lowerCase?: boolean; queryParams?: IQueryParams; disableCSV?: boolean; hash?: string | number; } declare function buildUrl(url?: string | null | IUrlOptions, options?: IUrlOptions): string; export { buildUrl }; export default buildUrl;