/** Check if an URL is relative. @param url - The URL to check. @example ``` import isRelativeUrl = require('is-relative-url'); isRelativeUrl('foo/bar'); //=> true isRelativeUrl('https://sindresorhus.com/foo/bar'); //=> false isRelativeUrl('//sindresorhus.com'); //=> true ``` */ declare function isRelativeUrl(url: string): boolean; export = isRelativeUrl;