type Nullable = T | null; type Host = { hostname: Nullable; port: Nullable; }; type Url = { protocol: Nullable; slashes: Nullable; auth: Nullable; host: Nullable; port: Nullable; hostname: Nullable; hosts: Host[]; hash: Nullable; search: Nullable; query: Nullable; pathname: Nullable; path: Nullable; href: Nullable; }; export declare const parse: (url: string) => Url; export {};