import type { LocalizedString } from './Exports'; export type DestinationTree = { ancestry: string | null; children?: DestinationTree[] | undefined; id: number; name: LocalizedString; published: boolean; };