/** * 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: .uiLabel * Represents the ui:label Aura component. * Get label text. Check if the field associated with the label is required. * generated from JSON dist/aura/label.utam.json * @version 2026-03-09T13:56:35.009Z * @author Salesforce */ declare class Label extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get label text * @return string */ getLabelText(): Promise; /** * Check if the field associated with the label is required * @return boolean */ isRequired(): Promise; } export = Label;