import { SmartWalletOptions } from "../evm/aa-service"; import { ChainWalletConfig } from "../types"; import { SavingsAccount, SmartSavingsAccount } from "./types"; export declare class SmartSavingsManager { private chainConfig; constructor(chainConfig: ChainWalletConfig); upgradeSavingsToSmartAccount(savingsAccount: SavingsAccount, options?: SmartWalletOptions): Promise; upgradeSavingsAndInitialize(savingsAccount: SavingsAccount, options?: SmartWalletOptions): Promise; canUpgradeToSmartAccount(): boolean; getChainConfig(): ChainWalletConfig; }