/** * 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 _Field from 'salesforce-pageobjects/flexipage/pageObjects/field'; /** * Selector: flexipage-column2. * Represents the flexipage-column2 lightning component. * Get flexipage:field component by ID. * This specific Page Object (PO) built for the feature is currently in development and will not be available to customers. * generated from JSON dist/flexipage/column2.utam.json * @version 2026-03-09T13:56:35.725Z * @author Salesforce */ declare class Column2 extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getFields(ContainerCtor: _ContainerCtor): Promise; getFieldByID(dataFieldId: string): Promise<_Field>; } export = Column2;