/** * 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, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; /** * Selector: lightning-breadcrumb. * Represents the lightning-breadcrumb Lightning web component. * Retrieve the text or href of a breadcrumb or click on it. * generated from JSON dist/lightning/breadcrumb.utam.json * @version 2026-03-09T13:56:35.985Z * @author Salesforce */ declare class Breadcrumb extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Clicks the breadcrumb link * @return void */ click(): Promise; /** * Gets the text of the breadcrumb link * @return string */ getText(): Promise; /** * Gets the destination URL of the breadcrumb link * @return string */ getLinkHref(): Promise; } export = Breadcrumb;