import { CallHandler, ExecutionContext, NestInterceptor } from '@nestjs/common'; import { Reflector } from '@nestjs/core'; import { Observable } from 'rxjs'; export interface StandardApiResponse { success: boolean; statusCode: number; path: string; timestamp: string; data: T; } export declare class ResponseInterceptor implements NestInterceptor> { private readonly reflector; constructor(reflector: Reflector); intercept(context: ExecutionContext, next: CallHandler): Observable>; }