import { Contract, providers, Wallet } from "ethers"; export declare const getSigner: (chainRPC: string, privateKey?: string) => providers.JsonRpcProvider | Wallet; export declare const getContract: (address: string, abi: any, chainRPC: string, privateKey?: string) => Contract;