import { AfterViewInit, ChangeDetectorRef, ComponentFactoryResolver, Type } from '@angular/core'; import { ExpandComponentDirective } from '../../../directives/expand-component/expand-component.directive'; export declare class ExpandedRowComponent implements AfterViewInit { private componentFactoryResolver; private cdr; expandedView: ExpandComponentDirective; row: TYPE; config: { component: Type; data: ((item: TYPE) => object); }; constructor(componentFactoryResolver: ComponentFactoryResolver, cdr: ChangeDetectorRef); ngAfterViewInit(): void; InitExpandedRowView(): void; }