import type { FlexBoxProps } from '@ariestools/sdk-react/flexbox'; import type { AccountInstance } from '@xyo-network/sdk'; import React from 'react'; /** * Props for {@link WalletError}. * @public */ export interface WalletErrorProps { error?: Error; } /** * Compact error indicator with hover tip for wallet resolution failures. * @public */ export declare const WalletError: React.FC; /** * Props for {@link WalletIdenticon}. * @public */ export interface WalletIdenticonProps { account?: AccountInstance | null; name: string; } /** * Small identicon with hover tip for a named wallet or account. * @public */ export declare const WalletIdenticon: React.FC; /** * Debug-style status chip for the root wallet from context. * @public */ export declare const RootWalletInfo: React.FC; /** * Debug-style status chip for the currently selected wallet account. * @public */ export declare const SelectedWalletInfo: React.FC; /** * Debug-style status chip for the resolved wallet from {@link useWallet}. * @public */ export declare const WalletInfo: React.FC; /** * Debug-style status chip for the resolved account from {@link useAccount}. * @public */ export declare const AccountInfo: React.FC; //# sourceMappingURL=WalletInfo.d.ts.map