1 | import { AfterViewInit, ElementRef, OnChanges } from '@angular/core';
|
2 | import { Grid } from '../../../lib/grid';
|
3 | export declare class ActionsTitleComponent implements AfterViewInit, OnChanges {
|
4 | private ref;
|
5 | grid: Grid;
|
6 | actionsColumnTitle: string;
|
7 | constructor(ref: ElementRef);
|
8 | ngAfterViewInit(): void;
|
9 | ngOnChanges(): void;
|
10 | }
|