import { NgbModal, NgbModalOptions } from '@ng-bootstrap/ng-bootstrap'; declare type ComponentProps = { [key: string]: any; }; export interface BllModalOptions extends NgbModalOptions { componentProps?: ComponentProps; } export declare class BllModal { private modalService; constructor(modalService: NgbModal); open(content: any, options?: BllModalOptions): Promise<{ modal: import("@ng-bootstrap/ng-bootstrap").NgbModalRef; data: any; }>; } export {};