/** * Validates if a string is a valid HTTP or HTTPS URL. * * @param urlString - The URL string to validate * @returns true if the URL is valid HTTP/HTTPS, false otherwise */ declare function isValidUrl(urlString: string | undefined): boolean; export { isValidUrl as default };