/** * @description Checks whether provided string is a valid URL. * @param {string} string * @return {boolean} Whether the string is a valid URL. */ export declare const isValidUrl: (string: string) => boolean;