import { ComponentWrapper, ElementWrapper } from "@cloudscape-design/test-utils-core/selectors"; export default class ActionCardWrapper extends ComponentWrapper { static rootSelector: string; /** * Returns the header element of the action card. */ findHeader(): ElementWrapper; /** * Returns the description element of the action card. */ findDescription(): ElementWrapper; /** * Returns the content element of the action card. */ findContent(): ElementWrapper; /** * Finds the icon slot of the action card. */ findIcon(): ElementWrapper; }