export type RecipientItem = { memberID: number; displayName: string; displaySubtitle: string|null; thumbnailUrl: string|null; }; export type SearchRecipientResponse = { list: RecipientItem[]; hasMore: boolean; };