export interface TranslationSourceUnit {
  id: string;
  source: string;
  description?: string;
  meaning?: string;
  locations?: string[];
}
