import { Contract } from '@ethersproject/contracts'; import type { JsonRpcProvider } from '@ethersproject/providers'; import { FeeAmount } from '@uniswap/v3-sdk'; export declare function isAddress(value: any): string | false; export declare function shortenAddress(address: string, chars?: number): string; export declare function getContract(address: string, ABI: any, library: JsonRpcProvider, account?: string): Contract; export declare function escapeRegExp(string: string): string; export declare function formattedFeeAmount(feeAmount: FeeAmount): number;