/** * A fail-safe way to get the URL object from a string * * @param url - The URL string to be used in the URL constructor * @returns the URL object if the url parameter is valid, undefined otherwise */ export declare const getURL: (url?: string) => URL | undefined;