/** * Constants for interacting with AEM components. */ export declare const Properties: Readonly<{ /** * Name of the data-cq-data-path data attribute. */ DATA_PATH_ATTR: "data-cq-data-path"; /** * Name of the data-resource-type data attribute. */ DATA_CQ_RESOURCE_TYPE_ATTR: "data-cq-resource-type"; /** * Event which indicates that content of remote component has been fetched and loaded in the app */ ASYNC_CONTENT_LOADED_EVENT: "cq-async-content-loaded"; /** * Selector for WCM mode state meta property. */ _WCM_MODE_META_SELECTOR: "meta[property=\"cq:wcmmode\"]"; TYPE: ":type"; ITEMS: ":items"; ITEMS_ORDER: ":itemsOrder"; PATH: ":path"; CHILDREN: ":children"; HIERARCHY_TYPE: ":hierarchyType"; JCR_CONTENT: "jcr:content"; }>;