{
    "description": {
        "author": "Salesforce",
        "text": [
            "Component that displays a scoped notification message with an icon and optional slot content.",
            "Selector: app_dev_agent-scoped-notification"
        ]
    },
    "shadow": {
        "elements": [
            {
                "name": "notificationContainer",
                "selector": {
                    "css": ".notification"
                },
                "description": "Represents the container of the notification message and icon.",
                "elements": [
                    {
                        "name": "iconElement",
                        "selector": {
                            "css": "lightning-icon"
                        },
                        "type": "utam-lightning/pageObjects/icon",
                        "description": "Represents the icon displayed within the notification.",
                        "public": true
                    },
                    {
                        "name": "messageText",
                        "selector": {
                            "css": ".slds-media__body > p"
                        },
                        "description": "Represents the paragraph element containing the notification message."
                    },
                    {
                        "name": "slotContent",
                        "selector": {
                            "css": ":scope > *:first-child"
                        },
                        "type": "container",
                        "description": "Represents the default slot for additional content.",
                        "public": true
                    }
                ]
            }
        ]
    },
    "methods": [
        {
            "name": "isNotificationVisible",
            "description": {
                "text": [
                    "Check if the notification container is visible"
                ],
                "return": "boolean"
            },
            "compose": [
                {
                    "element": "notificationContainer",
                    "apply": "isVisible"
                }
            ]
        },
        {
            "name": "getMessageText",
            "description": {
                "text": [
                    "Get the text content of the notification message"
                ],
                "return": "string"
            },
            "compose": [
                {
                    "element": "messageText",
                    "apply": "getText"
                }
            ]
        }
    ]
}