import React, { CSSProperties } from "react"; import { IProductCard, IProductContext, InitialValues, ProductCardHandlers, onChangeArgs } from "../interfaces"; export declare const ProductContext: React.Context; export interface ProductCardProps { product: IProductCard; children: (args: ProductCardHandlers) => JSX.Element; className?: string; style?: CSSProperties; onChange?: (props: onChangeArgs) => void; value?: number; initialValues?: InitialValues; } export declare const ProductCard: ({ children, product, className, style, onChange, value, initialValues }: ProductCardProps) => React.JSX.Element;