/** * 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 _SortableListItem from 'salesforce-pageobjects/visualeditor/pageObjects/sortableListItem'; /** * Selector: .visualEditorSortableList. * Represents the visualEditor:sortableList Aura component. * Get all the visualEditor:sortableListItem components. * generated from JSON dist/visualeditor/sortableList.utam.json * @version 2026-03-09T13:56:37.178Z * @author Salesforce */ export default class SortableList extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getListItems(): Promise<_SortableListItem[]>; }