///
import { URL } from 'url';
/**
* Decodes a string into the `URL` type
*/
export declare const Url: Omit, "from" | "defaultValue"> & Omit<{
displayName: string;
description: string;
from(str: string): Promise;
}, "from"> & import("../from").From;
/**
* Decodes an http/https only URL
*/
export declare const HttpUrl: Omit, "from" | "defaultValue"> & Omit<{
displayName: string;
description: string;
from(str: string): Promise;
}, "from"> & import("../from").From, "from" | "defaultValue"> & Omit<{
from(url: URL): Promise;
}, "from"> & import("../from").From;