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