import React, { ReactElement, Dispatch, SetStateAction } from 'react'; import { web3 } from '@project-serum/anchor'; declare type DataContextType = { candyShopAddress?: web3.PublicKey; setCandyShopAddress: Dispatch>; }; export declare const CandyContext: React.Context; interface CandyProviderProps { children: ReactElement; } export declare const CandyShopDataValidator: React.FC; export declare const useUpdateCandyShopContext: (candyShopProp?: web3.PublicKey) => DataContextType; export {}; //# sourceMappingURL=index.d.ts.map