import { Logger } from '../..'; import { Authentication } from '../authn/types/authn.type'; import { AuthorizationManager } from './types/authz.type'; export declare class AuthorityAuthorizationManager implements AuthorizationManager { private logger; constructor(opts: { logger: Logger; }); verify(authentication: Authentication, authorities: string[]): void; check(authentication: Authentication, authorities: string[]): boolean; }