import { ComponentWrapper, ElementWrapper } from '@cloudscape-design/test-utils-core/dom'; export default class ActionCardWrapper extends ComponentWrapper { static rootSelector: string; /** * Returns the header element of the action card. */ findHeader(): ElementWrapper | null; /** * Returns the description element of the action card. */ findDescription(): ElementWrapper | null; /** * Returns the content element of the action card. */ findContent(): ElementWrapper | null; /** * Finds the icon slot of the action card. */ findIcon(): ElementWrapper | null; /** * Returns whether the action card is disabled. */ isDisabled(): boolean; /** * Performs a click by triggering a mouse event on the internal button. * Note that programmatic events ignore disabled attribute and will trigger listeners even if the element is disabled. */ click(): void; }