import { ComponentRef, Type, ComponentFactoryResolver, ComponentFactory, Injector } from '@angular/core'; import { PblNgridMultiComponentRegistry } from '@pebula/ngrid'; export declare class PblNgridOverlayPanelComponentExtension extends PblNgridMultiComponentRegistry { component: Type; cfr?: ComponentFactoryResolver; injector?: Injector; readonly name: string; readonly kind: 'overlayPanels'; readonly projectContent = false; constructor(name: string, component: Type, cfr?: ComponentFactoryResolver, injector?: Injector); getFactory(context: any): ComponentFactory; onCreated(context: any, cmpRef: ComponentRef): void; }