import React, { SetStateAction } from 'react'; import { Dispatch } from 'react'; declare const ErpContext: React.Context<{ orderList: Record; setOrderList: Dispatch>>; currentOrderDetail: Record; setCurrentOrderDetail: Dispatch>>; buyerId: string; setBuyerId: Dispatch>; subOrderListVisible: boolean; setSubOrderListVisible: Dispatch>; globalLoading: boolean; setGlobalLoading: Dispatch>; }>; declare const ErpProvider: ({ children }: React.PropsWithChildren) => React.JSX.Element; export { ErpContext, ErpProvider };