import type { CardActionsProps } from '@mui/material'; import type { EthAddressWrapper, Promisable } from '@xylabs/sdk-js'; import React from 'react'; export interface WalletOverviewCardActions extends CardActionsProps { connectWallet?: () => Promise; currentAccount?: EthAddressWrapper; onSign?: () => Promisable; onSignTypedData?: () => Promisable; onSwitchChain?: () => Promisable; } export declare const WalletOverviewCardActions: React.FC; //# sourceMappingURL=CardActions.d.ts.map