/// export type ModalContextValue = { zIndex: number; closeOnEscape: boolean; closeOnClickOutside: boolean; hideCloseButton: boolean; shouldTrapFocus: boolean; isOpen: boolean; /** * @description Backdrop을 클릭했을 때, ESC 버튼을 눌렀을 때 실행됩니다. * @description 또한, 모달의 X 아이콘 버튼에 사용됩니다. */ onClose: () => void; }; export declare const ModalProvider: import("react").Provider, useModalContextValue: () => ModalContextValue; //# sourceMappingURL=Modal.context.d.ts.map