import { ConfigData } from '../types'; import Token from './Token'; export default class Config { readonly id: string; readonly token: Token; readonly reserve: string; readonly beneficiary: string; readonly contributionToken: Token; readonly minGoal: string; readonly maxGoal: string; readonly period: number; readonly exchangeRate: string; readonly vestingCliffPeriod: number; readonly vestingCompletePeriod: number; readonly supplyOfferedPct: string; readonly fundingForBeneficiaryPct: string; readonly openDate: string; readonly vestingCliffDate: number; readonly vestingCompleteDate: number; readonly totalRaised: string; readonly state: string; constructor(data: ConfigData); } //# sourceMappingURL=Config.d.ts.map