interface Options {
    protocol?: string;
    tld?: string;
}
export default function url(options?: Options): string;
