import { AnimationEvent } from '@angular/animations'; import { AfterViewInit } from '@angular/core'; import { Observable } from 'rxjs'; import { NgxCookieBannerService } from '../../services/ngx-cookie-banner.service'; export declare class NgxCookieBannerComponent implements AfterViewInit { private readonly service; /** * @private this property is intended to be used internally! */ _transition: 'void' | 'bottomOut'; /** * @private this property is intended to be used internally! */ _removeComponent: boolean; /** * Use this observable to be notified about cookie status changes. */ isSeen: Observable; constructor(service: NgxCookieBannerService); ngAfterViewInit(): void; /** * Hide the cookie banner and set a cookie to store consent. */ dismiss(): void; /** * @private this function is intended to be used internally! */ _onAnimationFinish(evt: AnimationEvent): void; }