import { HatchOracleConfigData } from '../types'; import ContractCache from './helpers/ContractCache'; import ERC20Token from './ERC20Token'; declare class HatchOracleConfig { readonly id: string; readonly scoreToken: ERC20Token; readonly ratio: string; constructor(data: HatchOracleConfigData, contractCache: ContractCache); } export default HatchOracleConfig; //# sourceMappingURL=HatchOracleConfig.d.ts.map