/** * 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, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; import _Combobox from 'salesforce-pageobjects/lightning/pageObjects/combobox'; import _ButtonIcon from 'salesforce-pageobjects/lightning/pageObjects/buttonIcon'; /** * Selector: primitive-column-sorter * Represents the PrimitiveColumnSorter Lightning web component. * Contains buttons for moving up and down, a combobox, and radio buttons for sorting order. * generated from JSON dist/lightning/primitiveColumnSorter.utam.json * @version 2026-03-09T13:56:36.185Z * @author Salesforce */ export default class PrimitiveColumnSorter extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Clicks the 'Move Up' button. */ moveUp(): Promise; /** * Clicks the 'Move Down' button. */ moveDown(): Promise; /** * Clicks the 'Delete' button. */ delete(): Promise; getComboBox(): Promise<_Combobox | null>; getRadioAscending(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; getRadioDescending(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; getMoveUpButton(): Promise<_ButtonIcon>; getMoveDownButton(): Promise<_ButtonIcon>; getDeleteButton(): Promise<_ButtonIcon>; }