/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject, ClickableUtamElement as _ClickableUtamElement, TouchableUtamElement as _TouchableUtamElement } from '@utam/core'; import _DraftRow from 'salesforce-pageobjects/salesforceapp/pageObjects/offlineapp/draftRow'; /** * Selector: draft_list. * Represents the iOS draft list used in the Offline App. * Verify the draft list and its rows. * generated from JSON dist/salesforceapp/offlineapp/draftListiOS.utam.json * @version 2026-03-09T13:56:34.440Z * @author Salesforce */ export default class DraftListiOS extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getRoot(): Promise<(_BaseUtamElement & _ClickableUtamElement & _TouchableUtamElement)>; getDraftRows(): Promise<_DraftRow[] | null>; getDraftRowAtIndex(index: number): Promise<_DraftRow>; }