import type { Recipient } from './Recipient'; /** * Response serializer for source validation */ export type ValidateSourceResponse = { status: string; valid_count: number; invalid_entries: Array; sample_recipients: Array; };