import { Parent } from "../message-system/data.props.js"; import { DataDictionary } from "../message-system/index.js"; export interface ExtendedParent extends Parent { /** * The current dictionary ID this parent refers to */ currentId: string; /** * The linked data index in the parent */ linkedDataIndex: number; } /** * * @alpha * @internal */ export declare function findDictionaryIdParents(dictionaryId: string, dataDictionary: DataDictionary, parents?: ExtendedParent[]): ExtendedParent[]; /** * * @alpha * @internal */ export declare function findUpdatedDictionaryId(parents: ExtendedParent[], dataDictionary: DataDictionary, dictionaryId?: string): string;