import { type ButtonHTMLAttributes, type Ref } from 'react'; type FigmaLikeButtonProps = Omit, 'children' | 'color'> & { defaultLiked?: boolean; figmaColors?: readonly string[]; heartColor?: string; inactiveColor?: string; label?: string; liked?: boolean; onLikedChange?: (liked: boolean) => void; ref?: Ref; size?: number | string; }; declare const FigmaLikeButton: ({ className, defaultLiked, disabled, figmaColors, heartColor, inactiveColor, label, liked, onClick, onLikedChange, ref, size, style, type, ...buttonProps }: FigmaLikeButtonProps) => import("react/jsx-runtime").JSX.Element; export { FigmaLikeButton, type FigmaLikeButtonProps };