/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; /** * Represents the sheet for the activity timeline. * Selector: Open Recent Activity Overlay * generated from JSON dist/salesforceapp/record/embeddedHalfSheetiOS.utam.json * @version 2026-03-09T13:56:34.570Z * @author Salesforce */ declare class EmbeddedHalfSheetiOS extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Close the recent activity overlay */ close(): Promise; /** * Open the recent activity overlay */ expand(): Promise; /** * Collapse the recent activity overlay */ collapse(): Promise; waitForRecentActivityContainer(): Promise; } export = EmbeddedHalfSheetiOS;