/** * 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, BaseUtamElement as _BaseUtamElement, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _Button from 'salesforce-pageobjects/lightning/pageObjects/button'; /** * Selector: es_property_editors-input-brand * Represents the brand input property editor. * generated from JSON dist/es_property_editors/inputBrand.utam.json * @version 2026-03-09T13:56:35.402Z * @author Salesforce */ declare class InputBrand extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); waitForPreview(): Promise<(_BaseUtamElement)>; getBrandLabel(): Promise<(_BaseUtamElement)>; getButton(): Promise<_Button>; getShowDefaultBrand(): Promise<_Button>; getCompactPreview(): Promise<(_BaseUtamElement)>; } export = InputBrand;