import { IdentifiedIncomingMessage } from '../helper-types'; export declare type AuthzScopeArgFn = ((req: IdentifiedIncomingMessage) => Array | string); export declare type AuthzScopeArg = AuthzScopeArgFn | Array | string; export declare const AuthzScope: (scope: AuthzScopeArg) => (target: object, key?: any, descriptor?: any) => any;