import { ComponentRef, Type } from '@angular/core'; import { CreateDynamicComponentService } from "../utils/create-dynamic-component.service"; import { IPoint } from "../popup-menu/popup-menu-list.component"; import { PopoverComponent } from "./popover.component"; export declare class PopoverService { private createDynamicComponentService; constructor(createDynamicComponentService: CreateDynamicComponentService); createPopOver: (title: string, content: string, positionOnPage: IPoint, location?: string) => PopoverComponent; createPopOverWithInnerComponent: (title: string, content: string, positionOnPage: IPoint, dynamicComponentType: Type, dynamicComponentInput?: any, location?: string) => PopoverComponent; openPopover: (customMMenuData: any) => ComponentRef; openPopoverWithInnerComponent: (customMMenuData: any, dynamicComponentType: Type, dynamicComponentInput?: any) => ComponentRef; }