import { BaseError } from 'make-error'; import { Constrained } from '../../core'; export declare class InvalidURLError extends BaseError { constructor(); } export declare const urlSymbol: unique symbol; export type URL = Constrained; export declare function isURL(input: unknown): input is URL; export declare function url(input: unknown): URL;