import React, { FC } from 'react'; import { StringPublicKey } from '../utils'; interface StoreConfig { storeAddress?: StringPublicKey; isConfigured: boolean; isReady: boolean; setStoreForOwner: (ownerAddress?: string) => Promise; } export declare const StoreContext: React.Context; export declare const StoreProvider: FC<{ ownerAddress?: string; storeAddress?: string; children?: any; }>; export declare const useStore: () => StoreConfig; export {}; //# sourceMappingURL=store.d.ts.map