{
    "description": {
        "author": "Salesforce",
        "text": [
            "A component that captures a click event on a div and dispatches a custom click event with additional detail if an executor is provided.",
            "Selector: runtime-copilot-base-block-base-followup-action"
        ]
    },
    "shadow": {
        "elements": [
            {
                "name": "clickableDiv",
                "selector": {
                    "css": "div"
                },
                "type": [
                    "actionable",
                    "clickable"
                ],
                "description": "Represents the div that captures the click event."
            }
        ]
    },
    "elements": [
        {
            "name": "defaultSlotContent",
            "selector": {
                "css": ":scope > *:first-child"
            },
            "type": "container",
            "description": "Represents the default slot content where users can insert any content.",
            "public": true
        }
    ],
    "methods": [
        {
            "name": "clickDiv",
            "description": {
                "text": [
                    "Simulate a click action on the div"
                ]
            },
            "compose": [
                {
                    "element": "clickableDiv",
                    "apply": "click"
                }
            ]
        },
        {
            "name": "isDivVisible",
            "description": {
                "text": [
                    "Check that the clickable div is present and visible"
                ],
                "return": "boolean"
            },
            "compose": [
                {
                    "element": "clickableDiv",
                    "apply": "isVisible"
                }
            ]
        },
        {
            "name": "isDivEnabled",
            "description": {
                "text": [
                    "Check if the clickable div is enabled for interaction"
                ],
                "return": "boolean"
            },
            "compose": [
                {
                    "element": "clickableDiv",
                    "apply": "isEnabled"
                }
            ]
        }
    ]
}