import { StaticJsonRpcProvider } from '@ethersproject/providers'; import { AlembicProvider } from '../wallet/AlembicProvider'; import { MetaTransactionData, SafeTransactionDataPartial } from '../wallet/types'; declare const _default: { isDeployed: (walletAddress: string, provider: StaticJsonRpcProvider | AlembicProvider) => Promise; getNonce: (walletAddress: string, provider: StaticJsonRpcProvider | AlembicProvider) => Promise; getSuccessExecTransactionEvent: (safeTxHash: string, walletAddress: string, provider: StaticJsonRpcProvider | AlembicProvider) => Promise; getFailedExecTransactionEvent: (safeTxHash: string, walletAddress: string, provider: StaticJsonRpcProvider | AlembicProvider) => Promise; isSafeOwner: (walletAddress: string, signerAddress: string, provider: StaticJsonRpcProvider) => Promise; prepareAddOwnerTx: (walletAddress: string, newOwner: string) => Promise; formatWebAuthnSignatureForSafe: (signerAddress: string, signature: string) => string; getSafeTransactionHash: (walletAddress: string, transactionData: SafeTransactionDataPartial, chainId: number) => string; getTransactionsTotalValue: (safeTxData: MetaTransactionData[]) => Promise; }; export default _default;