import { EventEmitter, OnChanges } from '@angular/core'; import { Grid } from '../../../lib/grid'; import { Row } from '../../../lib/data-set/row'; export declare class ActionsComponent implements OnChanges { grid: Grid; row: Row; create: EventEmitter; custom: EventEmitter; createButtonContent: string; cancelButtonContent: string; showCustomInForm: string; ngOnChanges(): void; }