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