import { StrongAddress } from '@celo/base'; import { Contract } from '@celo/connect'; import { BaseWrapper } from './BaseWrapper'; export declare abstract class AbstractFeeCurrencyWrapper extends BaseWrapper { abstract getAddresses(): Promise; getFeeCurrencyInformation(whitelist?: StrongAddress[]): Promise<{ name: string | undefined; symbol: string | undefined; address: `0x${string}`; adaptedToken: `0x${string}` | undefined; decimals: number | undefined; }[]>; }