import { ComponentWrapper, ElementWrapper } from "@awsui/test-utils-core/selectors"; import OptionWrapper from '../internal/option'; export default class TokenWrapper extends ComponentWrapper { static rootSelector: string; protected findOption(): OptionWrapper; /** * Returns the token label. */ findLabel(): ElementWrapper; /** * Returns the token label tag. */ findLabelTag(): ElementWrapper; /** * Returns the token description. */ findDescription(): ElementWrapper; /** * Returns the token tags. */ findTags(): import("@awsui/test-utils-core/selectors").MultiElementWrapper; /** * Returns the token dismiss button. */ findDismiss(): ElementWrapper; }