import { default as React } from 'react'; import { Collection as CollectionType } from '../collection/collection.types'; interface Props { collection: CollectionType; fadeIn?: boolean; isSelected: boolean; style?: React.CSSProperties; } export declare function CollectionCard({ collection, fadeIn, isSelected, style }: Props): React.JSX.Element; export {};