/** * Get the media handle for a document's or part's featured image. * @param nodeId The nodeId of a document or a part. Do not use with the site node id. */ export declare function getHandleOfFeaturedImage(nodeId: string): string; /** * Get the media handle for a field on a node. * Use this for non-localized media fields and for gallery fields. * @param siteNodeId The nodeId of the site (from homeRoutingCluster.siteNodeId) * @param nodeId The nodeId of the target node * @param fieldName The name of the field */ export declare function getHandleOfFieldOnNode({ siteNodeId, nodeId, fieldName, }: { siteNodeId: string; nodeId: string; fieldName: string; }): string; /** * Get the media handle for a site field. * @param fieldName The name of the site field (e.g., "favicon", "ogImage", "logo") */ export declare function getHandleOfSiteField(fieldName: string): string; //# sourceMappingURL=media-handle-helpers.d.ts.map