import { BigNumber } from '@0xproject/utils'; export abstract class AbstractBalanceAndProxyAllowanceFetcher { public abstract async getBalanceAsync(tokenAddress: string, userAddress: string): Promise; public abstract async getProxyAllowanceAsync(tokenAddress: string, userAddress: string): Promise; }