export interface Photo { id: string; width: number; height: number; color: string | null; links: { download: string; download_location: string; html: string; self: string; }; urls: { regular: string; raw: string; small: string; thumb: string; }; user: { username: string; name: string; }; }