import { ComponentWrapper, ElementWrapper } from '@cloudscape-design/test-utils-core/dom'; import CollectionPreferencesWrapper from '../collection-preferences'; import PaginationWrapper from '../pagination'; import TextFilterWrapper from '../text-filter'; declare class CardSectionWrapper extends ComponentWrapper { findSectionHeader(): ElementWrapper | null; findContent(): ElementWrapper | null; } declare class CardWrapper extends ComponentWrapper { findSections(): Array; findCardHeader(): ElementWrapper | null; findSelectionArea(): ElementWrapper | null; } export default class CardsWrapper extends ComponentWrapper { static rootSelector: string; private containerWrapper; findItems(): Array; findSelectedItems(): Array; findHeader(): ElementWrapper | null; /** * Alias for findHeader method for compatibility with previous versions * @deprecated */ findHeaderRegion(): ElementWrapper | null; /** * Alias for findEmptySlot method for compatibility with previous versions * @deprecated */ findEmptyRegion(): ElementWrapper | null; findEmptySlot(): ElementWrapper | null; findLoadingText(): ElementWrapper | null; findTextFilter(): TextFilterWrapper | null; findPagination(): PaginationWrapper | null; findCollectionPreferences(): CollectionPreferencesWrapper | null; } export {};