import { SolanaCluster, SolanaClusterId, StorageCluster } from '@wallet-ui/core'; import { ReactNode } from 'react'; export interface WalletUiClusterContextProviderProps { clusters: SolanaCluster[]; render: (props: WalletUiClusterContextValue) => ReactNode; storage?: StorageCluster; } export interface WalletUiClusterContextValue { cluster: SolanaCluster; clusters: SolanaCluster[]; setCluster(cluster: SolanaClusterId): void; } export declare const WalletUiClusterContext: import("react").Context; //# sourceMappingURL=wallet-ui-cluster-context.d.ts.map