/** * Checks if the given string is a valid URL. * @param str - The string to check. * @returns True if the string is a valid URL; otherwise, false. */ export declare function isURL(str: string): boolean; export declare function isFileURI(inputString: string | null | undefined): boolean; export declare function isWebSocketUrl(input: string): boolean;