import { NestInterceptor, ExecutionContext, CallHandler } from '@nestjs/common'; import { Observable } from 'rxjs'; import { Reflector } from '@nestjs/core'; import { CsrfService } from "../services"; export declare class CsrfValidateInterceptor implements NestInterceptor { private readonly reflector; private readonly csrf; constructor(reflector: Reflector, csrf: CsrfService); intercept(context: ExecutionContext, next: CallHandler): Promise>; }