import { IPromptType } from "../interfaces/IAuthingSSOConstructorParams"; export declare class AuthzUrlBuilder { private _clientId; private _origin; private _redirectUri; private _responseType; private _responseMode; private _prompt; private _state; private _nonce; private _loginHint; private _scope; private _loginPageContext; constructor(origin: string, appid: string, redirectUri: string); build(): URL; redirectUri(url: string): this; scope(params: string): this; responseMode(params: string): this; responseType(params: string): this; clientId(appId: string): this; prompt(params: IPromptType): this; state(timestamp: string): this; nonce(rand: string): this; loginHint(loginHint: string): this; loginPageContext(context: string): this; } //# sourceMappingURL=AuthzUrlBuilder.d.ts.map