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