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