/** * 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 _Picklist from 'salesforce-pageobjects/lightning/pageObjects/picklist'; /** * Selector: lst-input-picklist. * Represents the lists input picklist Lightning web component. * Access the inner picklist component. * generated from JSON dist/lists/inputPicklist.utam.json * @version 2026-03-09T13:56:36.336Z * @author Salesforce */ declare class InputPicklist extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getPicklist(): Promise<_Picklist>; } export = InputPicklist;