import { CallHandler, ExecutionContext, NestInterceptor } from '@nestjs/common';
import { Observable } from 'rxjs';
/**
 * Session information interceptor.
 *
 * This interceptor extracts the authenticated user information from the request
 * and sets it in the SessionService for the duration of the request.
 */
export declare class SessionInfoInterceptor implements NestInterceptor {
    intercept(context: ExecutionContext, next: CallHandler): Observable<unknown>;
}
