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