import { PresaleConfigData } from '../types'; import Token from './Token'; export default class PresaleConfig { 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: PresaleConfigData); } //# sourceMappingURL=PresaleConfig.d.ts.map