/**
 * Determines if the given URL string is an absolute URL.
 */
declare function isAbsoluteUrl(url: string): boolean;

export { isAbsoluteUrl };
