/** * 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, ClickableUtamElement as _ClickableUtamElement, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; /** * Selector: draft_row. * Represents the iOS draft row inside of the draft list. * Verify the draft row and its fields. * generated from JSON dist/salesforceapp/offlineapp/draftRowiOS.utam.json * @version 2026-03-09T13:56:34.448Z * @author Salesforce */ declare class DraftRowiOS extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); editDraft(): Promise; getTitle(): Promise; getObjectName(): Promise; getErrorMsg(): Promise; hasDraftsIcon(): Promise; hasDraftsErrorIcon(): Promise; hasUndoButton(): Promise; hasEditButton(): Promise; undoDraft(): Promise; getRoot(): Promise<(_BaseUtamElement)>; } export = DraftRowiOS;