/** * Constants for interacting with AEM components. */ export declare const ClassNames: Readonly<{ /** * Default CSS Class names associated with a component. */ DEFAULT: "appliedCssClassNames"; /** * Class names associated with a new section component. */ NEW_SECTION: "new section"; /** * Class name used to denote aem-container root element. */ CONTAINER: "aem-container"; /** * Class name used to identify the placeholder used to represent an empty component. */ DEFAULT_PLACEHOLDER: "cq-placeholder"; PAGE: "aem-page"; RESPONSIVE_GRID_PLACEHOLDER: "aem-Grid-newComponent"; ALLOWED_LIST_PLACEHOLDER: "aem-AllowedComponent--list"; ALLOWED_COMPONENT_TITLE: "aem-AllowedComponent--title"; ALLOWED_COMPONENT_PLACEHOLDER: "aem-AllowedComponent--component cq-placeholder placeholder"; /** * Class name used to identify the placeholder used to represent an empty ResponsiveGrid component. */ RESPONSIVE_GRID_PLACEHOLDER_CLASS_NAMES: "aem-Grid-newComponent"; }>;