/// <reference types="urijs" />
import IUri from "./IUri";
import Wrapper from "./Abstractions/Wrapper";
export default class UriWrapper extends Wrapper<uri.URI> implements IUri {
    private readonly _port;
    constructor(uri: uri.URI);
    get authority(): string;
    get fragment(): string;
    get host(): string;
    get password(): string;
    get path(): string;
    get port(): number | null;
    get query(): string;
    get scheme(): string;
    get userName(): string;
}
