import { HatchConfigData } from '../types'; import ERC20Token from './ERC20Token'; import ContractCache from './helpers/ContractCache'; declare class HatchConfig { readonly id: string; readonly token: ERC20Token; readonly reserve: string; readonly beneficiary: string; readonly contributionToken: ERC20Token; readonly minGoal: string; readonly maxGoal: string; readonly period: string; readonly exchangeRate: string; readonly vestingCliffPeriod: string; readonly vestingCompletePeriod: string; readonly supplyOfferedPct: string; readonly fundingForBeneficiaryPct: string; readonly openDate: string; readonly vestingCliffDate: string; readonly vestingCompleteDate: string; readonly totalRaised: string; readonly state: string; readonly PPM: string; constructor(data: HatchConfigData, contractCache: ContractCache); } export default HatchConfig; //# sourceMappingURL=HatchConfig.d.ts.map