/**
 * 获取绝对路径
 * @param url
 */
declare let getAbsoluteUrl: (url: any) => string;
/**
 * 判断是否为空
 * @param str {string} 需要判断的值
 * @returns {boolean}
 */
declare const isEmpty: (str: any) => boolean;
export { getAbsoluteUrl, isEmpty };
