import { TableElement } from './table-element'; import { FormGroup } from '@angular/forms'; import { TableDataSource } from './table-data-source'; export declare class TableElementReactiveForms extends TableElement { id: number; originalData?: T; source: TableDataSource; validator: FormGroup; constructor(init: Partial>); get currentData(): T; set currentData(data: T); get editing(): boolean; set editing(value: boolean); isValid(): boolean; }