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