import { CallHandler, ExecutionContext, NestInterceptor } from "@nestjs/common";
import { Observable } from "rxjs";
import { ApiLogService } from "./v1/api-log.service";
export declare class ApiLogInterceptor implements NestInterceptor {
    private readonly apiLogService;
    constructor(apiLogService: ApiLogService);
    intercept(context: ExecutionContext, next: CallHandler<any>): Observable<any> | Promise<Observable<any>>;
}
