import { NestInterceptor } from '@nestjs/common'; import { Class } from '@ptc-org/nestjs-query-core'; import { Authorizer } from '../auth'; export type AuthorizerContext = { authorizer: Authorizer; }; export declare function AuthorizerInterceptor(DTOClass: Class): Class;