import React from 'react';
interface AddToCartButtonProps {
    productId: number;
    quantity?: number;
    variationId?: number;
    className?: string;
    children?: React.ReactNode;
    onSuccess?: () => void;
    onError?: (error: string) => void;
    disabled?: boolean;
}
export declare function AddToCartButton({ productId, quantity, variationId, className, children, onSuccess, onError, disabled, }: AddToCartButtonProps): import("react/jsx-runtime").JSX.Element;
export {};
