import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
import { BoxModelService, EventsService } from '@lunaeme/circe-core';
export declare class ModalComponent implements OnInit, OnDestroy, AfterViewInit {
    ev: EventsService;
    private _el;
    private _bm;
    title: string;
    titleClass: string;
    titleBackground: boolean;
    closeButton: boolean;
    modalBackground: boolean;
    clickOutside: boolean;
    clickOutsideExceptions: Array<string>;
    fixed: string;
    noPadding: boolean;
    close: EventEmitter<boolean>;
    titleAddClass: any;
    private readonly _element;
    constructor(ev: EventsService, _el: ElementRef, _bm: BoxModelService);
    private _adjustContentBody;
    ngOnInit(): void;
    ngAfterViewInit(): void;
    ngOnDestroy(): void;
}
