/** * 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'; import _RelatedPreviewCard from 'salesforce-pageobjects/lists/pageObjects/relatedPreviewCard'; import _HistoryCard from 'salesforce-pageobjects/lists/pageObjects/historyCard'; import _ListViewRowLevelAction from 'salesforce-pageobjects/lists/pageObjects/listViewRowLevelAction'; /** * Selector: lst-template-list-item-factory. * Represents the template list item factory Lightning web component. * Access supported card components and row-level actions. * generated from JSON dist/lists/templateListItemFactory.utam.json * @version 2026-03-09T13:56:36.409Z * @author Salesforce */ declare class TemplateListItemFactory extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getRelatedPreviewCard(): Promise<_RelatedPreviewCard>; getHistoryCard(): Promise<_HistoryCard>; getListViewRowLevelAction(): Promise<_ListViewRowLevelAction>; getContainer(ContainerCtor: _ContainerCtor): Promise; } export = TemplateListItemFactory;