import type { EntryLookupTarget } from '../commands/entry-lookup-target.js'; import type { SpaceConfig } from '../config/types.js'; import { type ReferenceEntryRow } from '../index/query.js'; import type { SafeEnvironment } from './client.js'; export interface EntryLookupResult { id: string; contentType: string; row?: ReferenceEntryRow; } /** * Resolves a catalog or navigation entry from flat lookup flags (index-first, CMA fallback). */ export declare function findEntryByLookupTarget(space: SpaceConfig, env: SafeEnvironment, target: EntryLookupTarget, opts?: { preview?: boolean; }): Promise; //# sourceMappingURL=entry-lookup.d.ts.map