/** * 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 _ViewRecordForm from 'salesforce-pageobjects/runtime_copilot_base/pageObjects/viewRecordForm'; /** * Component that displays a read-only form with record information once the data is ready. * Selector: runtime_copilot_base-view-record-id * generated from JSON dist/runtime_copilot_base/viewRecordId.utam.json * @version 2026-03-09T13:56:37.365Z * @author Salesforce */ export default class ViewRecordId extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); waitForViewRecordForm(): Promise<_ViewRecordForm>; /** * Represents the custom component that displays the record information. */ getViewRecordForm(): Promise<_ViewRecordForm | null>; }