import { AnimationBuilder, ComponentProps, ComponentRef, FrameworkDelegate, Mode } from "../../interface"; export interface ModalOptions { component: T; componentProps?: ComponentProps; showBackdrop?: boolean; backdropDismiss?: boolean; cssClass?: string | string[]; delegate?: FrameworkDelegate; animated?: boolean; mode?: Mode; keyboardClose?: boolean; id?: string; enterAnimation?: AnimationBuilder; leaveAnimation?: AnimationBuilder; activator?: HTMLElement; firstFocusableElement?: HTMLElement; modalLabel?: string; }