import { AnimationBuilder, ComponentProps, ComponentRef, FrameworkDelegate } from '../../interface'; export interface PopoverOptions { component: ComponentRef; componentProps?: ComponentProps; showBackdrop?: boolean; backdropDismiss?: boolean; translucent?: boolean; enterAnimation?: AnimationBuilder; leaveAnimation?: AnimationBuilder; cssClass?: string | string[]; event?: Event; delegate?: FrameworkDelegate; }