/** * 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'; /** * Selector: .userProfileCardTriggerRoot * Represents the one:header Aura component. * Access the display density, switch the user to a classic experience, log the user out or profile settings * generated from JSON dist/global/userProfileCardTrigger.utam.json * @version 2026-03-09T13:56:35.953Z * @author Salesforce */ declare class UserProfileCardTrigger extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Click view profile button and wait for profile card * @return none */ viewProfile(): Promise; } export = UserProfileCardTrigger;