import { Card, ImageAsset, ImageAssetFactory, ImageAssetType } from '../../domain/card'; import { FormGroup } from '@angular/forms'; import { OnInit } from '@angular/core'; import { SafeHtml } from '@angular/platform-browser'; export declare class DefaultFormComponent implements OnInit { private imageAssetFactory; card: Card; form: FormGroup; formKey: string; action: any; description: SafeHtml; description2: SafeHtml; images: ImageAsset[]; imageAssetType: typeof ImageAssetType; constructor(imageAssetFactory: ImageAssetFactory); ngOnInit(): void; getCardDescription(description: string): string; private _getReplaceableMatches; private _replaceVariables; private _getFormPartValue; }