import { Provider } from "@ethersproject/providers"; import { DeployWalletDto, DeployWalletReponse, SmartAccountResponse } from "../utils/AarcTypes"; declare class Alchemy { provider: Provider; chainId: number; constructor(chainId: number, rpcUrl: string); getAllAlchemySCWs(owner: string): Promise; getAlchemySCW(owner: string, index: number): Promise; deployAlchemySCW(deployWalletDto: DeployWalletDto): Promise; } export default Alchemy;