import { BaseWallet } from '@dynamic-labs/types'; export type AccountAbstractionIsSmartWalletArgs = { wallet: BaseWallet; }; export type AccountAbstractionGetEOAWalletArgs = { wallet: BaseWallet; }; export type AccountAbstractionGetSmartWalletArgs = { wallet: BaseWallet; }; export type AccountAbstractionMessages = { isSmartWallet: (args: AccountAbstractionIsSmartWalletArgs) => Promise; getEOAWallet: (args: AccountAbstractionGetEOAWalletArgs) => Promise; getSmartWallet: (args: AccountAbstractionGetSmartWalletArgs) => Promise; };