/** * 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 _Input from 'salesforce-pageobjects/lightning/pageObjects/input'; /** * Component that represents a toggle switch inside a table cell, allowing users to toggle a value and dispatch events for changes. * Selector: src-table-toggle-switch * generated from JSON dist/setup/tableToggleSwitch.utam.json * @version 2026-03-09T13:56:37.048Z * @author Salesforce */ export default class TableToggleSwitch extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that the toggle switch container is present and visible * @return boolean */ isToggleSwitchContainerVisible(): Promise; /** * Represents the lightning input toggle switch that can be toggled on or off */ getToggleSwitchInput(): Promise<_Input>; }