import type { ReferencePath } from '#src/references/types.js'; import type { EntityServiceContext } from './types.js'; /** * Finds the entity array containing entities of the given type. * * For top-level types: navigates from the definition root. * For nested types: finds the parent entity by ID, then navigates from there. */ export declare function resolveEntityArray(entityTypeName: string, parentEntityId: string | undefined, { entityTypeMap, lookupEntity, serializedDefinition }: EntityServiceContext): { array: unknown[]; path: ReferencePath; }; //# sourceMappingURL=entity-navigation.d.ts.map