/** * Copyright (c) 2025, Salesforce, Inc. * All rights reserved. * For full license text, see the LICENSE file or https://utam.dev/salesforce/license */ import { Driver as _Driver, Element as _Element, Locator as _Locator, BaseUtamElement as _BaseUtamElement, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; /** * Selector: lightning-illustration * Represents the lightning-illustration Lightning web component. * Get the illustration container and the sds-figure (lightning-primitive-figure) element, or get the alternative text. * generated from JSON dist/lightning/illustration.utam.json * @version 2026-03-09T13:56:36.103Z * @author Salesforce */ declare class Illustration extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get the alternative text (aria-label) of the illustration * @return string */ getAlternativeText(): Promise; /** * Get the figure set attribute from lightning-primitive-figure * @return string */ getFigureSet(): Promise; /** * Get the figure symbol attribute from sds-figure * @return string */ getFigureSymbol(): Promise; /** * Get the figure-sets attribute from sds-figure * @return string */ getFigureSets(): Promise; getRoot(): Promise<(_BaseUtamElement)>; getFigure(): Promise<(_BaseUtamElement)>; } export = Illustration;