/** * 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'; import _InputRichText from 'salesforce-pageobjects/es_property_editors/pageObjects/inputRichText'; /** * Selector: runtime_thp_cms-input-section * Represents the inputSection component of CMS runtime Trailhead modules * Returns key concept and lesson section text * generated from JSON dist/runtime_thp_cms/inputSection.utam.json * @version 2026-03-09T13:56:36.916Z * @author Salesforce */ declare class InputSection extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getKeyConcept(): Promise<_Input>; getLessonTextRichTextEditor(): Promise<_InputRichText>; } export = InputSection;