/// import { CollectionInterface } from '../interfaces'; export interface CollectionCardProps { collection: CollectionInterface | undefined; onClick: any; } export declare const CollectionCard: ({ collection, onClick, }: CollectionCardProps) => JSX.Element;