/// import './style.less'; interface DataProps { title?: string; subTitle1?: string; subDesc?: string; subTitle2?: string; attribute1?: string; subTitle1Style?: any; attribute2?: string; attribute3?: string; attribute4?: string; onPress?: () => void; } export interface ProductListProps { data: DataProps; subTitle1Style?: any; onPress?: () => void; } declare const ProductList: (props: ProductListProps) => JSX.Element; export default ProductList;