import { FormGroup } from '@angular/forms'; import { OnInit } from '@angular/core'; import { DomSanitizer, SafeHtml } from '@angular/platform-browser'; import { Card } from '../../domain/card'; export declare class ConsentFormComponent implements OnInit { private sanitizer; card: Card; form: FormGroup; formKey: string; description: SafeHtml; description2: SafeHtml; description3: SafeHtml; constructor(sanitizer: DomSanitizer); ngOnInit(): void; getCardDescription(descriptionText: any): SafeHtml; }