/** * 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'; /** * Component that displays a skeleton loader which can be rendered as either a series of lines or a circle. * Selector: app_dev_agent-skeleton * generated from JSON dist/app_dev_agent/skeleton.utam.json * @version 2026-03-09T13:56:34.894Z * @author Salesforce */ export default class Skeleton extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that the main wrapper div is present and visible * @return boolean */ isWrapperVisible(): Promise; /** * Check that all line divs are present and visible * @return boolean[] */ isLineDivsVisible(): Promise; /** * Check that the circle div is present and visible * @return boolean */ isCircleVisible(): Promise; /** * Returns true if element "circleDiv" present on the page * @return boolean */ verifyCircleDivPresence(): Promise; }