import { createContext, Dispatch, SetStateAction } from 'react'; export const CouponListContext = createContext<{ expandedIndex?: number | string; setExpandedIndex?: Dispatch>; }>({});