/** * Useful variables for interacting with CQ/AEM components. * * @namespace Constants */ export declare class Constants { /** * Type of the item. */ static readonly TYPE_PROP = ":type"; /** * List of child items of an item. */ static readonly ITEMS_PROP = ":items"; /** * Order in which the items should be listed. */ static readonly ITEMS_ORDER_PROP = ":itemsOrder"; /** * Path of an item. */ static readonly PATH_PROP = ":path"; /** * Children of a hierarchical item. */ static readonly CHILDREN_PROP = ":children"; /** * Hierarchical type of the item. */ static readonly HIERARCHY_TYPE_PROP = ":hierarchyType"; /** * JCR content node. */ static readonly JCR_CONTENT = "jcr:content"; private constructor(); } export default Constants; //# sourceMappingURL=Constants.d.ts.map