/** * 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'; import _Input from 'salesforce-pageobjects/lightning/pageObjects/input'; import _Picklist from 'salesforce-pageobjects/lightning/pageObjects/picklist'; /** * Selector: lightning-input-name * Represents the lightning-input-name Lightning web component. * Get the label, first name, last name, middle name, and formal name input components. Get the salutation picklist component. * generated from JSON dist/lightning/inputName.utam.json * @version 2026-03-09T13:56:36.119Z * @author Salesforce */ declare class InputName extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get input name label display value * @return string */ getLabel(): Promise; getFirstNameInput(): Promise<_Input>; getInformalNameInput(): Promise<_Input>; getLastNameInput(): Promise<_Input>; getMiddleNameInput(): Promise<_Input>; getSalutationPicklist(): Promise<_Picklist>; getSuffixInput(): Promise<_Input>; } export = InputName;