/** * 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, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; /** * Selector: lightning-carousel-image * Represents the lightning-carousel-image Lightning web component. * Get the link URL, the image URL, or get the tab index from the link attribute. * Get the description text, get the image's alternate text, or the header text. * generated from JSON dist/lightning/carouselImage.utam.json * @version 2026-03-09T13:56:36.010Z * @author Salesforce */ export default class CarouselImage extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get the link URL from href attribute value * @return string */ getLinkUrl(): Promise; /** * Get the link tabindex value * @return string */ getTabIndex(): Promise; /** * Get the carousel image content description text * @return string */ getDescription(): Promise; /** * Get the carousel image content header text * @return string */ getHeader(): Promise; /** * Get the carousel image source * @return string */ getImageUrl(): Promise; /** * Get the carousel image alternative text * @return string */ getAlternativeText(): Promise; getLink(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; }