import { ExecutionContext, NestInterceptor, CallHandler } from "@nestjs/common"; import { JwtStrategy } from "./jwt.strategy"; import { Observable } from "rxjs"; export declare class JwtAuthInterceptor implements NestInterceptor { private jwtStrategy; constructor(jwtStrategy: JwtStrategy); intercept(context: ExecutionContext, next: CallHandler): Observable | Promise>; }