import type { WalletInstance } from '@xyo-network/sdk'; import type { PropsWithChildren } from 'react'; import React from 'react'; /** * Props for {@link WalletProvider}. * @public */ export interface WalletProviderProps { defaultActiveAccountIndex?: number; rootWallet?: WalletInstance | null; } /** * Provides root wallet and active account index state to descendants. * @public */ export declare const WalletProvider: React.FC>; //# sourceMappingURL=Provider.d.ts.map