/**
 * @description: 获取当前URL所有参数
 * @returns {Record<string, string>} 包含所有参数的 JSON 对象。
 */
declare const getUrlParamsJson: () => Record<string, string>;
export { getUrlParamsJson };
