/*! Copyright (c) 2024, XAPP AI */
/**
 * Determines if the URL is a valid URL.
 *
 * It attempts to create a new URL object from the string and returns true if it is successful.
 * @param url
 * @returns
 */
export declare const isValidURL: (url: string) => boolean;
