import { ContributorData } from '../types'; declare class Contributor { readonly id: string; readonly account: string; readonly totalAmount: string; readonly totalValue: string; constructor(data: ContributorData); } export default Contributor; //# sourceMappingURL=Contributor.d.ts.map