import { SolanaCluster, StorageAccount, StorageCluster } from '@wallet-ui/core'; import React from 'react'; import { WalletUiContextProviderProps } from './wallet-ui-context'; export interface WalletUiConfig extends Omit { accountStorage?: StorageAccount; clusterStorage?: StorageCluster; clusters: SolanaCluster[]; } export declare function createWalletUiConfig(props: WalletUiConfig): WalletUiConfig; export interface WalletUiProps { children: React.ReactNode; config: WalletUiConfig; } export declare function WalletUi({ children, config: { accountStorage, clusters, clusterStorage, ...config } }: WalletUiProps): React.JSX.Element; //# sourceMappingURL=wallet-ui.d.ts.map