import { ModalButtonDirective } from './modal-button.directive'; import { ComponentRef, QueryList } from '@angular/core'; import { ModalContainerComponent } from './modal-container.component'; export declare class BsModalRef { /** * Reference to a component inside the modal. Null if modal's been created with TemplateRef */ content?: any | null; /** * Hides the modal */ close: (e?: any) => void; dialog?: ComponentRef | null; buttons?: QueryList; }