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