/** * Class representing a local OAuth redirect listener. */ export declare class Redirect { static readonly path = "/oauth/client/redirect"; private readonly port; /** * Constructor with a port number. * * @param port port on which the redirect service is listening. */ constructor(port: number); /** * Get the url for the redirect service. * * @returns a string representing the redirect url. */ url(): string; } //# sourceMappingURL=redirect.d.ts.map