/** * 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 _PlanBacklog from 'salesforce-pageobjects/app_dev_agent/pageObjects/planBacklog'; /** * A component that conditionally displays either a backlog placeholder with a heading and sub-heading or a container view based on the status of a plan or requirements. It handles loading states and updates dynamically based on the provided context. * Selector: app_dev_agent-plan-preview-layout * generated from JSON dist/app_dev_agent/planPreviewLayout.utam.json * @version 2026-03-09T13:56:34.878Z * @author Salesforce */ export default class PlanPreviewLayout extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); waitForBacklogPlaceholder(): Promise<_PlanBacklog>; /** * Represents a placeholder component shown when data is loading. */ getBacklogPlaceholder(): Promise<_PlanBacklog | null>; }