{
    "description": {
        "author": "Salesforce",
        "text": [
            "Selector: lightning-empty-state",
            "Represents the lightning-empty-state Lightning web component.",
            "Get the title, description slot content, call-to-action slot content, and illustration."
        ]
    },
    "exposeRootElement": true,
    "shadow": {
        "elements": [
            {
                "name": "illustration",
                "selector": {
                    "css": "lightning-illustration"
                },
                "type": "utam-lightning/pageObjects/illustration",
                "public": true
            },
            {
                "name": "title",
                "selector": {
                    "css": ".slds-illustration-title"
                }
            },
            {
                "name": "descriptionSlot",
                "selector": {
                    "css": "slot[name='description'] > *"
                },
                "type": "container",
                "public": true
            },
            {
                "name": "ctaSlot",
                "selector": {
                    "css": "slot[name='cta'] > *"
                },
                "type": "container",
                "public": true
            }
        ]
    },
    "methods": [
        {
            "name": "getTitle",
            "description": {
                "text": [
                    "Get the title of the empty state"
                ],
                "return": "string"
            },
            "compose": [
                {
                    "element": "title",
                    "apply": "getText"
                }
            ]
        }
    ]
}