/**
 * Enum representing the content definition type ID values in Agility CMS
 */
export declare enum ContentDefinitionTypeID {
    /**
     * List type content definition (0)
     */
    List = 0,
    /**
     * Single item type content definition (1)
     */
    SingleItem = 1,
    /**
     * Component type content definition (2)
     */
    Component = 2
}
