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