/** * 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'; /** * A checkbox component that provides additional form validation and focus management methods, transforming the "checked" attribute into the value attribute for compatibility with record layout items. * Selector: lightning-form-checkbox * generated from JSON dist/lightning/formCheckbox.utam.json * @version 2026-03-09T13:56:36.066Z * @author Salesforce */ export default class FormCheckbox extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Represents the checkbox input element */ getCheckboxInput(): Promise<_Input>; }