import type { CallHandler, ExecutionContext, NestInterceptor } from '@nestjs/common'; import type { Observable } from 'rxjs'; export declare class LanguageInterceptor implements NestInterceptor { intercept(context: ExecutionContext, next: CallHandler): Observable; } export declare function UseLanguageInterceptor(): MethodDecorator & ClassDecorator;