import type { Recipient } from './Recipient'; /** * Response serializer for notification preview */ export type PreviewResponse = { status: string; build_id: string; count: number; warning: string | null; recipients: Array; };