import { Contract } from "ethers"; import SafeServiceClient from "@safe-global/safe-service-client"; import { SafeTransactionData } from "@safe-global/safe-core-sdk-types"; import { SafeProvider } from "./SafeProvider"; export declare class SafeWrappedContract extends SafeProvider { contract: Contract; safeService: SafeServiceClient | undefined; methods: { [key: string]: Function; }; constructor(_contract: Contract, safeAddress: string); static getSafeTxData(contract: Contract, func: string, args: any[], nonce: number): SafeTransactionData; mount(): Promise; get getUnderlyingContract(): Contract; } //# sourceMappingURL=SafeWrappedContract.d.ts.map