/// import { IEcomStore } from "../types"; interface IProductItemAddon { title: string; price: number; unit: string; } interface IProductItemProps extends IEcomStore { title: string; description: string; price: number; unit: string; addons: IProductItemAddon[]; } declare const _default: (props: IProductItemProps) => JSX.Element; export default _default;