/** * 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'; /** * Represents the Chatter post cell contained within the feed scrollview. * Perform actions for social media posts. * generated from JSON dist/salesforceapp/chatter/chatterPostCell.utam.json * @version 2026-03-09T13:56:34.222Z * @author Salesforce */ export default class ChatterPostCell extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getFeedActor(): Promise; openAction(): Promise; getPostText(): Promise; getPostTime(): Promise; getLikes(): Promise; getCommentsViews(): Promise; like(): Promise; comment(): Promise; share(): Promise; openPostDetail(): Promise; }