import { AfterViewInit, ElementRef } from '@angular/core'; import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog'; import { ApiService } from '../../services/api.service'; import { UnsubscribeComponent } from '../../generals/Components'; export declare class BlogdeleteComponent extends UnsubscribeComponent implements AfterViewInit { private config; private ref; private apiService; input: ElementRef; deleteText: string; deleteInput: string | null; precheckWarning: string | null; loading: boolean; constructor(config: DynamicDialogConfig, ref: DynamicDialogRef, apiService: ApiService); delete(): void; close(result?: boolean): void; ngAfterViewInit(): void; }