export interface CountryInfo { value: string; label: string; image: string; } export interface ActionButton { label: string; icon: string; color: string; action: () => void; } export interface Translations { elementId: string; language: string; entityType: string; translatedText: string; attribute: string; }