import { ListService, PagedResultDto, TrackByService } from '@abp/ng.core'; import { ConfirmationService } from '@abp/ng.theme.shared'; import { OnInit } from '@angular/core'; import { FormBuilder, FormGroup } from '@angular/forms'; import type { GetResourceEventsInput, ResourceEventWithNavigationPropertiesDto } from '../../proxy/resource-events/models'; import { ResourceEventService } from '../../proxy/resource-events/resource-event.service'; export declare class ResourceEventComponent implements OnInit { readonly list: ListService; readonly track: TrackByService; readonly service: ResourceEventService; private confirmation; private fb; data: PagedResultDto; filters: GetResourceEventsInput; form: FormGroup; isFiltersHidden: boolean; isModalBusy: boolean; isModalOpen: boolean; selected?: ResourceEventWithNavigationPropertiesDto; constructor(list: ListService, track: TrackByService, service: ResourceEventService, confirmation: ConfirmationService, fb: FormBuilder); ngOnInit(): void; clearFilters(): void; buildForm(): void; hideForm(): void; showForm(): void; submitForm(): void; create(): void; update(record: ResourceEventWithNavigationPropertiesDto): void; delete(record: ResourceEventWithNavigationPropertiesDto): void; }