//#region src/is-url.d.ts /** * Determine if the provided value is of type URL * * @param value - The value to type check * @returns An indicator specifying if the value provided is of type `URL` */ declare const isURL: (value: unknown) => value is URL; //#endregion export { isURL }; //# sourceMappingURL=is-url.d.cts.map