import { NestInterceptor, ExecutionContext, CallHandler } from '@nestjs/common';
import { Observable } from 'rxjs';
import { AuthService } from 'src/auth/auth.service';
export interface Response<T> {
    data: T;
}
export declare class ClearCsrfInterceptor<T> implements NestInterceptor<T, Response<T>> {
    private authService;
    constructor(authService: AuthService);
    intercept(context: ExecutionContext, next: CallHandler): Observable<Response<T>>;
}
