import { AfterViewInit, ElementRef, OnDestroy, ChangeDetectorRef, EventEmitter } from "@angular/core"; import { IdService } from "../shared/services/id.service"; import { DomSanitizer } from "@angular/platform-browser"; export declare class CardComponent implements AfterViewInit, OnDestroy { private idService; private cdr; private sanitizer; id: string; scrollable: boolean; height: number; link: string; routerLink: any; linkLabel: string; target: string; flush: boolean; cardClass: string; cardStyle: string; tabbable: boolean; role: string; labelledBy: string; isModal: boolean; shadow: boolean; card: boolean; hoverable: boolean; readonly isLink: boolean; readonly isRouter: boolean; cardClicked: EventEmitter<{}>; header: ElementRef; footer: ElementRef; body: ElementRef; cardResults: ElementRef; headerFlag: boolean; footerFlag: boolean; constructor(idService: IdService, cdr: ChangeDetectorRef, sanitizer: DomSanitizer); ngAfterViewInit(): void; ngOnDestroy(): void; scrollBody(val: any): void; bodyClassGen(): { "rbc-card-flush": boolean; "rbc-card-scrollable": boolean; }; cardClassGen(): {}; heightGen(): string | number; sanitize(url: string): import("@angular/platform-browser").SafeUrl; }