import type { EIP6963Connector } from '@ariestools/sdk-react/crypto'; import type { TableProps } from '@mui/material'; import React from 'react'; /** Props for {@link ConnectedWalletsTable}. */ export interface ConnectedWalletsTableProps extends TableProps { ignoreConnectDialog?: boolean; onIgnoreConnectDialog?: (checked: boolean) => void; wallets?: EIP6963Connector[]; } /** Table of discovered wallets with connect/revoke dialogs and enable toggles. */ export declare const ConnectedWalletsTable: React.FC; //# sourceMappingURL=ConnectedWalletsTable.d.ts.map