import { OnInit, ChangeDetectorRef } from '@angular/core'; import { Observable } from 'rxjs'; import { ModalOpenerOptions } from '../modal-opener/modal-opener.component'; export declare class BannerComponent implements OnInit { private cd; title: string; text: string; requirement: string; opener: ModalOpenerOptions; image: string | undefined; offset$: Observable; constructor(cd: ChangeDetectorRef); ngOnInit(): void; } export interface BannerOptions { id: string; type: 'intro-component'; text: string; title: string; requirement?: string; opener?: ModalOpenerOptions; image?: string; }