import type { EthWalletConnectorBase } from '@ariestools/sdk-react/crypto'; import type { TableRowProps } from '@mui/material'; import React from 'react'; import type { ActiveProvider } from '../lib/index.js'; /** Props for {@link WalletConnectionsTableRow}. */ export interface WalletConnectionsTableRowProps extends TableRowProps { ignoreConnectDialog?: boolean; onConnectClick?: (activeProvider: ActiveProvider) => void; onRevoke?: (activeProvider: ActiveProvider) => void; wallet: EthWalletConnectorBase; } /** Row summarizing a wallet's chain, accounts, actions, and enabled state. */ export declare const WalletConnectionsTableRow: React.FC; //# sourceMappingURL=ConnectedWalletsTableRow.d.ts.map