import { type ButtonHTMLAttributes, type Ref } from 'react'; type BeerLikeButtonProps = Omit, 'children'> & { backgroundColor?: string; borderColor?: string; count?: number; defaultCount?: number; label?: string; onCountChange?: (count: number) => void; particleCount?: number; primaryColor?: string; ref?: Ref; secondaryColor?: string; size?: number | string; }; declare const BeerLikeButton: ({ "aria-label": ariaLabel, backgroundColor, borderColor, className, count, defaultCount, disabled, label, onClick, onCountChange, particleCount, primaryColor, ref, secondaryColor, size, style, type, ...buttonProps }: BeerLikeButtonProps) => import("react/jsx-runtime").JSX.Element; export { BeerLikeButton, type BeerLikeButtonProps };