import type { SEOSettings } from './SEOSettings'; export interface NewsroomCompanyInformation { name: string; about: string; about_plaintext: string; email: string | null; website: string | null; phone: string | null; address: string | null; twitter: string | null; facebook: string | null; linkedin: string | null; pinterest: string | null; youtube: string | null; instagram: string | null; tiktok: string | null; email_disclaimer: string; cookie_statement: string; subscribe_disclaimer: string; seo_settings: SEOSettings; }