import { ProductCardProps, ProductContextProps } from "../interfaces/interfaces"; import React from "react"; export declare const ProductContext: React.Context; export declare const ProductCard: ({ children, product, className, style, onChange, value, initialValues, }: ProductCardProps) => JSX.Element;