/** * 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'; /** * Selector: .forceListRecord.forceRecordLayout. * Represents the record layout for a list record. * Access labels, fields, and open the record. * generated from JSON dist/lists/auraListRecord.utam.json * @version 2026-03-09T13:56:36.286Z * @author Salesforce */ declare class AuraListRecord extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get the primary field label * @return String value */ getPrimaryFieldLabel(): Promise; /** * Open the list record. * @return RecordHome */ openRecord(): Promise; /** * Get the secondary field * @return String value */ getSecondaryField(secondaryFieldLabel: string): Promise; /** * Get the secondary field labels * @return List of String values */ getSecondaryFieldLabels(): Promise; /** * Returns a boolean value indicating whether the secondary field exists * @return boolean value */ hasSecondaryField(secondaryFieldLabel: string): Promise; } export = AuraListRecord;