/**
 * Web ModalContext Context
 *
 */
import React from 'react';
declare const ModalContext: React.Context<{
    preventClick: any;
    onKeyDownHandler: any;
    id: any;
    title: any;
    hide_close_button: any;
    close_button_attributes: any;
    close_title: any;
    setBackgroundColor: any;
    onCloseClickHandler: any;
    contentRef: any;
    scrollRef: any;
    hide: any;
    contentId: any;
    close: any;
}>;
export default ModalContext;
