type Protocol = "http" | "https" | "ftp" | "ftps" | "file" | "data" | "mailto" | "tel" | "sms" | "ws" | "wss"; type AbsoluteUrl = `${Protocol}://${string}` | `${Protocol}:${string}`; declare const isAbsoluteUrl: (url: unknown) => url is AbsoluteUrl; export { isAbsoluteUrl }; //# sourceMappingURL=is-absolute-url.d.ts.map