import { providers } from 'ethers'; import BaseService from '../commons/BaseService'; import { eEthereumTxType, transactionType } from '../commons/types'; import { HelperContract } from './typechain/HelperContract'; export declare class HelperContractService extends BaseService { instance: HelperContract; constructor(provider: providers.Provider, address: string); convertApeCoinToPCApe(amount: string, receiver: string): { tx: () => Promise; txType: eEthereumTxType; gas: import("../commons/types").GasResponse; }; convertPCApeToApeCoin(amount: string, receiver: string): { tx: () => Promise; txType: eEthereumTxType; gas: import("../commons/types").GasResponse; }; } //# sourceMappingURL=index.d.ts.map