import { NestInterceptor, ExecutionContext, CallHandler } from '@nestjs/common'; export declare class UserLanguageSetterInterceptor implements NestInterceptor { private allowedLanguages; constructor(allowedLanguages?: string[]); intercept(context: ExecutionContext, next: CallHandler): Promise; }