import * as React from 'react'; import type { BaseCollectionProps, ElementType } from '../types'; /** * [📖 Docs](https://ui.docs.amplify.aws/react/components/collection) */ export declare const Collection: { ({ className, isSearchable, isPaginated, items, itemsPerPage, searchFilter, searchLabel, searchNoResultsFound, searchPlaceholder, type, testId, ...rest }: BaseCollectionProps): React.JSX.Element; displayName: string; };