import { AuthenticationSuccessHandler, Authentication } from './authentication-protocol'; import { Logger } from '@malagu/core'; import { RedirectStrategy } from '@malagu/web/lib/node'; import { RequestCache } from '../cache'; export declare class DefaultAuthenticationSuccessHandler implements AuthenticationSuccessHandler { protected readonly targetUrlParameter: string; protected readonly loginSuccessUrl: string; protected readonly alwaysUseLoginSuccessUrl: boolean; protected readonly useReferer: boolean; protected readonly logger: Logger; protected readonly redirectStrategy: RedirectStrategy; protected readonly requestCache: RequestCache; onAuthenticationSuccess(authentication: Authentication): Promise; protected determineTargetUrl(authentication: Authentication): Promise; } //# sourceMappingURL=authentication-success-handler.d.ts.map