/** * Returns the current URL search section (`?a=1&b=2`) as a key-value map. * * @returns {Map} An map containing the keys/values on the URL search section. */ export default function getUrlQuery(url: string): Map;