/** * 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 _CustomButtonIcon from 'salesforce-pageobjects/app_dev_agent/pageObjects/customButtonIcon'; import _RequirementsDocument from 'salesforce-pageobjects/app_dev_agent/pageObjects/requirementsDocument'; /** * Component that displays a requirements document with executive summary, use cases, custom sections, and navigation arrows for scrolling. * Selector: app_dev_agent-prd-layout * generated from JSON dist/app_dev_agent/prdLayout.utam.json * @version 2026-03-09T13:56:34.880Z * @author Salesforce */ declare class PrdLayout extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the bottom intersection element is visible * @return boolean */ isBottomIntersectionVisible(): Promise; /** * Check if the bottom intersection element is present in the DOM * @return boolean */ isBottomIntersectionPresent(): Promise; /** * Represents the upward navigation arrow button */ getUpArrowButton(): Promise<_CustomButtonIcon | null>; /** * Represents the requirements document component displaying executive summary, use cases, and custom sections */ getRequirementsDocument(): Promise<_RequirementsDocument>; /** * Represents the downward navigation arrow button */ getDownArrowButton(): Promise<_CustomButtonIcon | null>; } export = PrdLayout;