/** * 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'; /** * This component represents a customizable icon component, where the icon rendered can be dynamically determined by the `symbol` property. It allows setting the icon variant and size, and it appends the SVG node to the icon element in the DOM upon rendering. * Selector: src-base-icon * generated from JSON dist/runtime_copilot_base/baseIcon.utam.json * @version 2026-03-09T13:56:37.226Z * @author Salesforce */ declare class BaseIcon extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the icon element is visible * @return boolean */ getIconElementVisibility(): Promise; /** * Check if the icon element is present in the DOM * @return boolean */ getIconElementPresence(): Promise; } export = BaseIcon;