import { type HTMLAttributes, type Ref } from 'react';
type DDDLikeButtonProps = Omit, 'children' | 'onChange'> & {
accentColor?: string;
defaultLiked?: boolean;
disabled?: boolean;
inputId?: string;
label?: string;
liked?: boolean;
name?: string;
onLikedChange?: (liked: boolean) => void;
ref?: Ref;
size?: number | string;
};
declare const DDDLikeButton: ({ accentColor, className, defaultLiked, disabled, inputId, label, liked, name, onLikedChange, ref, size, style, ...props }: DDDLikeButtonProps) => import("react/jsx-runtime").JSX.Element;
export { DDDLikeButton, type DDDLikeButtonProps };