/// <reference types="react" />
import type { SxProps } from '@mui/system';
interface LikeButtonProps {
    likeCount?: number;
    isLiked?: boolean;
    handlers?: [() => void, () => void];
    sx?: SxProps;
}
declare const _default: ({ likeCount, isLiked, handlers, sx }: LikeButtonProps) => JSX.Element;
export default _default;
