import type { CardContentProps } from '@mui/material'; import type { EthAddressWrapper } from '@xylabs/sdk-js'; import type { TypedDataDomain } from 'ethers/hash'; import React from 'react'; import type { EthWallet, TypedDataTypes, TypedDataValues } from '../../types/index.ts'; export interface WalletOverviewCardContentProps extends CardContentProps { chainName?: string; connectError?: Error; connectRefused?: boolean; currentAccount?: EthAddressWrapper; domain: TypedDataDomain; signResponse?: string; types?: TypedDataTypes; validateTypedDataSignature?: boolean; values?: TypedDataValues; verifyTypedDataSignature?: EthWallet['verifyTypedDataSignature']; } export declare const WalletOverviewCardContent: React.FC; //# sourceMappingURL=CardContent.d.ts.map