import { CallHandler, ExecutionContext, NestInterceptor } from "@nestjs/common";
import { HttpAdapterHost } from "@nestjs/core";
import { Observable } from "rxjs";
export declare class QueryCheckInterceptor implements NestInterceptor {
    private readonly httpAdapterHost;
    constructor(httpAdapterHost: HttpAdapterHost);
    intercept(context: ExecutionContext, next: CallHandler): Observable<any>;
}
