export interface GiveRecordWithContactInfo { jwtId: string; fullClaim: unknown; // Replace with proper type giver: { known: boolean; displayName: string; profileImageUrl?: string; }; receiver: { known: boolean; displayName: string; profileImageUrl?: string; }; providerPlanName?: string; recipientProjectName?: string; description?: string; subDescription?: string; image?: string; timestamp: string; }