/** * Defines the content types used in the Content Tool API. * These types are used to categorize and manage different kinds of content such as components, items, materials, and tags. * The literals behind match the expected folder names in the file system. */ export declare const ContentTypes: { readonly components: "components"; readonly items: "items"; readonly materials: "materials"; readonly tags: "tags"; readonly catalogResponse: "responses"; }; /** * Type representing the keys of the ContentTypes object as a union of string literals. */ export type ContentType = (typeof ContentTypes)[keyof typeof ContentTypes]; export type ContentTypeComponent = typeof ContentTypes.components; export type ContentTypeItem = typeof ContentTypes.items; export type ContentTypeMaterial = typeof ContentTypes.materials; export type ContentTypeTag = typeof ContentTypes.tags;