/** * 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 badge with a label, typically used to indicate a beta feature. * Selector: src-copilot-message-pill * generated from JSON dist/feeds/chat/copilotMessagePill.utam.json * @version 2026-03-09T13:56:35.633Z * @author Salesforce */ declare class CopilotMessagePill extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get the text from the beta badge * @return string */ getBetaBadgeText(): Promise; } export = CopilotMessagePill;