export interface MediaInterface { style: string; media: string; } export interface Image { texts: { title: string; alt: string; }; styles: string[]; } export interface Sources { seo: { title: string; alt: string; }; images: SourceImages[]; } export interface SourceImages { url: string; media: string; }