/** * 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'; import _ListCopilotTopics from 'salesforce-pageobjects/ui/chatbots/components/pageObjects/listCopilotTopics'; import _ButtonIcon from 'salesforce-pageobjects/lightning/pageObjects/buttonIcon'; /** * A component that displays a list of Copilot topics with an optional guidance component. It allows interaction such as editing, viewing details, and removing topics from a Copilot version. The list can be displayed in a condensed or expanded format based on the `expanded` property. * Selector: src-rail-panel-topics * generated from JSON dist/ui/chatbots/components/railPanelTopics.utam.json * @version 2026-03-09T13:56:37.160Z * @author Salesforce */ export default class RailPanelTopics extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); waitForCopilotTopicsList(): Promise<_ListCopilotTopics>; waitForTopicRowActions(): Promise<_ButtonIcon[]>; /** * Represents the list of Copilot topics. */ getCopilotTopicsList(): Promise<_ListCopilotTopics>; /** * Represents the action buttons for each topic row. */ getTopicRowActions(): Promise<_ButtonIcon[]>; }