import { ChangeDetectorRef } from '@angular/core'; import { ListService, PagedResultDto } from '@abp/ng.core'; import { ConfirmationService } from '@abp/ng.theme.shared'; import type { EnrollmentWithNavigationPropertiesDto } from '../../../proxy/enrollments/models'; import { EnrollmentService } from '../../../proxy/enrollments/enrollment.service'; export declare abstract class AbstractEnrollmentViewService { protected readonly cdr: ChangeDetectorRef; protected readonly proxyService: EnrollmentService; protected readonly confirmationService: ConfirmationService; protected readonly list: ListService; data: PagedResultDto; delete(record: EnrollmentWithNavigationPropertiesDto): void; hookToQuery(courseId: string): void; }