/// interface IProps { data?: any; handleViewDetail?: () => void; } declare const CollectionCard: { ({ data, handleViewDetail }: IProps): JSX.Element; propTypes: {}; }; export default CollectionCard;