/** * 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, ContainerCtor as _ContainerCtor, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; /** * Selector: flexipage-field. * Represents the flexipage-field Lightning web component. * Wait for the field content to load. Get the field content using the container element. * generated from JSON dist/flexipage/field.utam.json * @version 2026-03-09T13:56:35.730Z * @author Salesforce */ declare class Field extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Waits for the record field content to be displayed */ waitForRecordFieldContent(): Promise; /** * Waits for the AI enabled record field content to be displayed */ waitForAIRecordFieldContent(): Promise; getRecordFieldContent(ContainerCtor: _ContainerCtor): Promise; } export = Field;