import { ethers } from 'ethers';
import { PoolType, SupportChain } from "../types";
declare const generateUniversalErc20Contract: (tokenAddress: string) => ethers.Contract;
declare const getBouncePoolContract: (poolType: PoolType, chainId: SupportChain) => ethers.Contract;
export { generateUniversalErc20Contract, getBouncePoolContract };
