import { CollectionItemProps, CollectSectionProps } from './types'; export interface T extends HTMLElement { } declare const CollectionItem: (props: CollectionItemProps) => JSX.Element; declare const CollectionSection: (props: CollectSectionProps) => JSX.Element; export { CollectionItem, CollectionSection };