import { ChangeDetectorRef } from '@angular/core'; import { BaseWidgetComponent } from '../../shared/base.component'; export declare class OverlayContentComponent extends BaseWidgetComponent { protected _cdr: ChangeDetectorRef; service: T; model: { [name: string]: any; }; fn: { [name: string]: Function; }; static className(): string; className(): typeof OverlayContentComponent.className; resize(): void; constructor(_cdr: ChangeDetectorRef); /** * Executes the close function for the parent modal container */ close(): void; /** * * @param type */ event(type: string): void; set(data: { [name: string]: any; }): void; }