import React, { useContext } from "react"; import type { ModalBlocksConfig } from "@applicaster/zapp-react-native-utils/configurationUtils/modalBlocksParser"; export const ModalBlocksStyleContext = React.createContext< ModalBlocksConfig | Record | undefined >(undefined); export const useModalBlocksStyle = () => { return useContext(ModalBlocksStyleContext); };