import type { UmbDictionaryEntityType } from '../dictionary/entity.js'; export type * from './entity.js'; export interface UmbDictionaryDetailModel { entityType: UmbDictionaryEntityType; unique: string; name: string; translations: Array; } export interface UmbDictionaryTranslationModel { isoCode: string; translation: string; }