export declare const Constants: {
    /**
     * Class names associated with a new section component
     *
     */
    NEW_SECTION_CLASS_NAMES: string;
    TYPE_PROP: any;
    /**
     * List of child items of an item
     *
     */
    ITEMS_PROP: any;
    /**
     * Order in which the items should be listed
     *
     */
    ITEMS_ORDER_PROP: any;
    /**
     * Path of the item
     *
     */
    PATH_PROP: any;
    /**
     * Children of an item
     *
     */
    CHILDREN_PROP: any;
    /**
     * Path of the resource in the model
     *
     */
    DATA_PATH_PROP: string;
    /**
     * Hierarchical type of the item
     */
    HIERARCHY_TYPE_PROP: any;
};
