import type { Temporal } from 'temporal-polyfill'; export type RecentEntityType = 'business' | 'deal' | 'individual'; export interface RecentEntitiesItem { uuid: string; createdAt: Temporal.ZonedDateTime; name: string; type: RecentEntityType; }