/** * Location Utils. * * @export * @abstract * @class LocationUtils */ export declare abstract class LocationUtils { /** * Get URL Search Params as an object from `location.search`. * * The values inside the Search Params are decoded using * `decodeURIComponent`. * * @static * @return {*} Search Params. * @memberof LocationUtils */ static getURLSearchParams(): { [key: string]: string; }; }