/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; /** * Represents the iOS login screen for the SFS app. * generated from JSON dist/sfsmobileapp/authentication/sfsLoginiOS.utam.json * @version 2026-03-09T13:56:34.696Z * @author Salesforce */ declare class SfsLoginiOS extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * login to the environment: enter login credentials, submit * @param passwordStr password to the environment * @param userNameStr username to the environment */ login(passwordStr: string, userNameStr: string): Promise; } export = SfsLoginiOS;