import { WalletAdapterData } from './walletAdapter'; export type ReefKnotProviderConfig = { autoConnect: boolean; walletDataList: WalletAdapterData[]; onAutoConnect?: () => void; onReconnect?: () => void; }; export type ReefKnotContextValue = ReefKnotProviderConfig & { loadingWalletId: string | null; setLoadingWalletId: React.Dispatch>; }; export type ReefKnotConfig = Omit; //# sourceMappingURL=reef-knot-config.d.ts.map