import { type ButtonHTMLAttributes, type Ref } from 'react'; type LeapingLikeButtonProps = Omit, 'children' | 'color'> & { accentColor?: string; defaultLiked?: boolean; label?: string; leapDistance?: number; liked?: boolean; onLikedChange?: (liked: boolean) => void; particleColors?: readonly string[]; particleCount?: number; ref?: Ref; size?: number | string; }; declare const LeapingLikeButton: ({ accentColor, className, defaultLiked, disabled, label, leapDistance, liked, onClick, onLikedChange, particleColors, particleCount, ref, size, style, type, ...props }: LeapingLikeButtonProps) => import("react/jsx-runtime").JSX.Element; export { LeapingLikeButton, type LeapingLikeButtonProps };