/** * 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 _AuraListRecord from 'salesforce-pageobjects/lists/pageObjects/auraListRecord'; /** * Selector: .listContent. * Represents the list content component. * Access the contents of the list view. * generated from JSON dist/lists/listContent.utam.json * @version 2026-03-09T13:56:36.339Z * @author Salesforce */ export default class ListContent extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getListRecords(): Promise<_AuraListRecord[]>; getListRecord(recordName: string): Promise<_AuraListRecord>; }