interface Testimonial { label: string; subtitle: string; text: string; } export interface TitleDescriptionComponentLocalization { description: string; titleBeforeCompanyName: string; companyName: string; titleAfterCompanyName: string; } export interface ValuesComponentLocalization { value1: string; value2?: string; value3?: string; value4?: string; } export interface TestimonialComponentLocalization { testimonial1: Testimonial; testimonial2?: Testimonial; testimonial3?: Testimonial; testimonial4?: Testimonial; testimonial5?: Testimonial; } export {};