import { ContributionData } from '../types'; declare class Contribution { readonly id: string; readonly contributorId: string; readonly value: string; readonly amount: string; readonly vestedPurchaseId: string; readonly createdAt: string; constructor(data: ContributionData); } export default Contribution; //# sourceMappingURL=Contribution.d.ts.map