import { ElementRef } from '@angular/core'; import { PopoverBody } from './popover-body.type'; import { PopoverService } from './popover.service'; export declare class Popover { protected popoverService: PopoverService; private elementRef; private popoverRef; private open; /** * The `Popover` body */ body: PopoverBody; /** * Sets the vertical position of the popover. Defaults to `bottom`. */ position: 'top' | 'bottom'; /** * Sets the horizontal `Popover' alignment. Defaults to `left`. */ alignment: 'left' | 'right' | 'center'; /** * Set to `true` to auto-wrap content in section */ sectioned: boolean; constructor(popoverService: PopoverService, elementRef: ElementRef); private show; onClick(): void; }