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