import { ExceptionFilter, ArgumentsHost, HttpException } from "@nestjs/common";
import { ApiLogService } from "./v1/api-log.service";
export declare class ApiValidationLogInterceptor implements ExceptionFilter {
    private readonly apiLogService;
    constructor(apiLogService: ApiLogService);
    catch(exception: HttpException, host: ArgumentsHost): void;
}
