import { GiveSummaryRecord, GiveVerifiableCredential } from "../interfaces"; export interface GiveRecordWithContactInfo extends GiveSummaryRecord { jwtId: string; fullClaim: GiveVerifiableCredential; giver: { known: boolean; displayName: string; profileImageUrl?: string; }; issuer: { known: boolean; displayName: string; profileImageUrl?: string; }; receiver: { known: boolean; displayName: string; profileImageUrl?: string; }; providerPlanName?: string; recipientProjectName?: string; description: string; image?: string; }