export declare class ModalConfig {
    isOpen: boolean;
    modalParentClass: string;
    headingText: string;
    headingTextClass: string;
    showCloseBtn: boolean;
    closeBtnContent: any;
    closeBtnClass: string;
    contentText: string;
    contentTextClass: string;
    buttonOneText: string;
    buttonOneClass: string;
    buttonTwoText: string;
    buttonTwoClass: string;
    buttonThreeText: string;
    buttonThreeClass: string;
    clickOutsideToClose: boolean;
    escapeToClose: boolean;
    showAnimation: boolean;
}
