/**
 * Check if a URL is absolute
 * @param url - The URL to check
 * @returns True if the URL is absolute, false otherwise
 */
export declare const isAbsoluteUrl: (url?: string) => boolean;
