import type { ContextExState } from '@ariestools/sdk-react/shared'; import type { WalletInstance } from '@xyo-network/sdk'; import type { Dispatch } from 'react'; /** * State shape for {@link WalletContext}. * @public */ export type WalletContextState = ContextExState<{ /** Currently selected account */ activeAccount?: WalletInstance | null; /** Currently selected index */ activeAccountIndex?: number; /** The root wallet being used */ rootWallet?: WalletInstance | null; /** Set currently selected index */ setActiveAccountIndex?: Dispatch; }>; //# sourceMappingURL=State.d.ts.map