/** * 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'; /** * Component that displays a status message indicating the number of items, the sorted column, sort direction, and the filter applied. * Selector: src-base-list-status * generated from JSON dist/ui/chatbots/components/baseListStatus.utam.json * @version 2026-03-09T13:56:37.119Z * @author Salesforce */ declare class BaseListStatus extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get the text content of the status message * @return string */ getStatusMessageText(): Promise; } export = BaseListStatus;