import { SolanaCluster, StorageAccount } from '@wallet-ui/core'; import React from 'react'; export interface WalletUiAccountContextProviderProps { children: React.ReactNode; cluster: SolanaCluster; storage?: StorageAccount; } /** * Saves the selected wallet account's storage key to the browser's local storage. In future * sessions it will try to return that same wallet account, or at least one from the same brand of * wallet if the wallet from which it came is still in the Wallet Standard registry. */ export declare function WalletUiAccountContextProvider({ children, cluster, storage: providedStorage, }: WalletUiAccountContextProviderProps): React.JSX.Element; //# sourceMappingURL=wallet-ui-account-context-provider.d.ts.map