import React, { FunctionComponent } from 'react'; export interface CardProps { imgUrl: string; title: string; price: string; vipPrice: string; shopDesc: string; delivery: string; shopName: string; className: string; style: React.CSSProperties; prolistTpl: React.ReactNode; shopTagTpl: React.ReactNode; originTpl: React.ReactNode; footerTpl: React.ReactNode; } export declare const Card: FunctionComponent & React.HTMLAttributes>;