import type { WalletInstance } from '@xyo-network/sdk'; import type { PropsWithChildren } from 'react'; import React from 'react'; import type { StandardNodesState } from './State.js'; /** Props for {@link StandardNodesProvider}. */ export type StandardNodesProviderProps = PropsWithChildren<{ defaultRemoteNodes?: StandardNodesState['nodes']; wallet?: WalletInstance | null; }>; /** Builds and provides standard remote nodes from a wallet instance. */ export declare const StandardNodesProvider: React.FC; /** {@link StandardNodesProvider} that supplies the active wallet account automatically. */ export declare const StandardNodesProviderWithWallet: React.FC>; //# sourceMappingURL=Providers.d.ts.map