import React, { AnchorHTMLAttributes } from 'react';
import { BoxProps } from '@mantine/core';
import { DataTrackingTypeHTMLElement } from "../../../types";
export type Props = {
count?: number;
href: string;
classes?: {
box?: string;
count?: string;
};
tracking?: DataTrackingTypeHTMLElement;
boxProps?: BoxProps;
anchorProps?: AnchorHTMLAttributes;
};
declare const CartCareButton: (props: Props) => React.JSX.Element;
export { CartCareButton };