import type { EntryFields, EntrySkeletonType } from 'contentful'; import type { MapAssetLink, Node, RuntimeContext, TransformContext } from '../types.js'; export declare const mapEntryLink: (transformContext: TransformContext) => { id: string; contentType: string; } | { id?: undefined; contentType?: undefined; }; export declare const mapAssetLink: (transformContext: TransformContext) => MapAssetLink; export declare const mapReferenceField: (fieldContent: EntryFields.EntryLink | Node, transformContext: TransformContext, runtimeContext: RuntimeContext) => Promise;