/** * Shared utilities for working with Fluid Topics metadata entries. */ import type { FtMetadataEntry } from '../types.js'; export declare const FT_META: { readonly VERSION_BUNDLE_STEM: "version_bundle_stem"; readonly VERSION: "version"; readonly LATEST_VERSION: "latestVersion"; readonly LOCALE: "ft:locale"; readonly PRETTY_URL: "ft:prettyUrl"; readonly BUNDLE: "bundle"; readonly LEGACY_TOPICNAME: "legacy_topicname"; readonly LEGACY_URL: "legacy_url"; readonly ZOOMIN_METADATA: "zoominmetadata"; readonly CONTENT_TYPE: "jamf:contentType"; readonly CLUSTER_ID: "ft:clusterId"; readonly PUBLICATION_ID: "ft:publicationId"; readonly PRODNAME: "prodname"; }; export declare function getMetaValue(metadata: FtMetadataEntry[], key: string): string; export declare function getMetaValues(metadata: FtMetadataEntry[], key: string): string[]; export declare function bundleStemToDisplayName(stem: string): string; //# sourceMappingURL=ft-metadata.d.ts.map