import { ElementRef, ChangeDetectorRef, QueryList } from '@angular/core'; import { IgxGridComponent } from './grid.component'; import { IgxRowDirective } from '../row.directive'; import { GridBaseAPIService } from '../api.service'; import { IgxGridSelectionService, IgxGridCRUDService } from '../selection/selection.service'; export declare class IgxGridRowComponent extends IgxRowDirective { gridAPI: GridBaseAPIService; crudService: IgxGridCRUDService; selectionService: IgxGridSelectionService; element: ElementRef; cdr: ChangeDetectorRef; constructor(gridAPI: GridBaseAPIService, crudService: IgxGridCRUDService, selectionService: IgxGridSelectionService, element: ElementRef, cdr: ChangeDetectorRef); private _cells; cells: QueryList; readonly hasColumnLayouts: boolean; getContext(col: any, row: any): { $implicit: any; row: any; }; readonly expanded: boolean; }