import { ComponentWrapper, ElementWrapper } from '@cloudscape-design/test-utils-core/dom'; import ButtonWrapper from '../button'; export default class FlashWrapper extends ComponentWrapper { static rootSelector: string; /** * Returns the dismiss button. * * The dismiss button is only rendered when the `dismissible` property is set to `true`. */ findDismissButton(): ButtonWrapper | null; /** * Returns the action slot. */ findAction(): ElementWrapper | null; /** * Returns the action button. * * The action button is only rendered when the `buttonText` property is set. */ findActionButton(): ButtonWrapper | null; findHeader(): ElementWrapper | null; findContent(): ElementWrapper | null; }