import { CallHandler, ExecutionContext, NestInterceptor } from '@nestjs/common';
import { Observable } from 'rxjs';
import { IAuthDefinitions, IAuthResponse, IHttpResponse } from '../../domain';
export declare class CookieAuthInterceptor implements NestInterceptor {
    protected readonly definitions: IAuthDefinitions;
    constructor(definitions: IAuthDefinitions);
    intercept(context: ExecutionContext, next: CallHandler): Observable<any>;
    setCookieToken(res: IHttpResponse, tokenResponse: IAuthResponse): any;
}
