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