/**
 * Replaces URL params with actual param values
 *
 * @param url - URL to populate
 * @param params - Object that represents params values where key is URL param key and value is param value
 * @returns Populated URL
 */
declare function populateURLParams(url: string, params: Obj): string;
export default populateURLParams;
