/**
 * 判断是否为URL地址
 * @category Validate
 * @param str
 */
declare function isUrl(str: string): boolean;
export default isUrl;
