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