/// export type DialogContextValue = { zIndex: number; closeOnEscape: boolean; closeOnClickOutside: boolean; shouldTrapFocus: boolean; isOpen: boolean; /** * @description Backdrop을 클릭했을 때, ESC 버튼을 눌렀을 때 실행됩니다. */ onClose?: () => void; }; export declare const DialogProvider: import("react").Provider, useDialog: () => DialogContextValue; //# sourceMappingURL=Dialog.context.d.ts.map