import type { Wallet } from '../../../wallet/wallet.js';
type ConnectionStatusProps = {
    selectedWallet: Wallet;
    info?: string[];
    hadConnectionError: boolean;
    onRetryConnection: (selectedWallet: Wallet) => void;
};
export declare function ConnectionStatus({ selectedWallet, info, hadConnectionError, onRetryConnection, }: ConnectionStatusProps): import("react/jsx-runtime.js").JSX.Element;
export {};
