declare const EditGridComponent: any; import editForm from './AGGrid.form'; export default class AGGridComponent extends EditGridComponent { static editForm: typeof editForm; static agGrid: any; private isModalOpened; editRows: any[]; editableRows: any[]; static schema(...extend: any[]): any; static get builderInfo(): { title: string; group: string; icon: string; weight: number; documentation: string; showPreview: boolean; schema: any; }; constructor(...args: any[]); init(): void; render(children: any): any; get agGridConfig(): any; get fetchUrl(): any; get fetchResource(): any; get resourceFormUrl(): string; get resourceFetchUrl(): string; attachResourceComponents(): void; isSortable(component: any): boolean; isFilterable(component: any): boolean; attach(element: any): any; get fetchProvider(): any; handleRow(params: any): void; attachModal(element: any): void; openModal(): void; closeModal(): void; cancelRow(): void; saveRow(index: any): boolean; onDeleteRow(params: any): void; addActionColumn(): void; onSelectionChanged: (event: any) => void; updateValue(value: any, flags: any): any; transformFetchedData(responseData: any): any; fetchData(): Promise; } export {};