/** * 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'; import _Helptext from 'salesforce-pageobjects/lightning/pageObjects/helptext'; import _Input from 'salesforce-pageobjects/lightning/pageObjects/input'; /** * Selector: lightning-input-location * Represents the lightning-input-location Lightning web component. * Gets the label, help text component, or longitude and latitude input components. * generated from JSON dist/lightning/inputLocation.utam.json * @version 2026-03-09T13:56:36.117Z * @author Salesforce */ export default class InputLocation extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getLabel(): Promise<(_BaseUtamElement)>; getHelptext(): Promise<_Helptext>; getLatitude(): Promise<_Input>; getLongitude(): Promise<_Input>; }