import { type ButtonHTMLAttributes, type Ref } from 'react'; type HeartArrowButtonProps = Omit, 'children' | 'color'> & { accentColor?: string; arrowFeatherColor?: string; arrowHeadColor?: string; arrowShaftColor?: string; defaultLiked?: boolean; label?: string; liked?: boolean; onLikedChange?: (liked: boolean) => void; ref?: Ref; size?: number | string; }; declare const HeartArrowButton: ({ accentColor, arrowFeatherColor, arrowHeadColor, arrowShaftColor, className, defaultLiked, label, liked, onClick, onLikedChange, ref, size, style, type, ...props }: HeartArrowButtonProps) => import("react/jsx-runtime").JSX.Element; export { HeartArrowButton, type HeartArrowButtonProps };