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