import { OnDestroy, OnInit } from '@angular/core'; import { Subscription } from 'rxjs'; import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms'; import { IFilterView, IPaginatorView, ISortView, PaginatorState, SortState } from "../crud-table"; import { HttpClient } from "@angular/common/http"; import * as i0 from "@angular/core"; export declare class BaseCrudBpmnTodoPagesComponent implements OnInit, OnDestroy, ISortView, IFilterView, IPaginatorView { protected tableService: any; protected fb: UntypedFormBuilder; isLoading: boolean; subscriptions: Subscription[]; filterGroup: UntypedFormGroup; sorting: SortState; paginator: PaginatorState; arrFormGroups: any[]; protected http: HttpClient; loadingStart: boolean; taskDef: string; itemsContent: any[]; constructor(tableService: any, fb: UntypedFormBuilder); paginate(paginator: PaginatorState): void; create(): void; edit(id: number, type?: string, typeTask?: any): void; filterForm(): void; filter(): void; sort(column: string): void; ngOnInit(): void; ngOnDestroy(): void; toDoSomething(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }