interface LikeButtonProps { liked?: boolean; count?: number; showCount?: boolean; size?: 'sm' | 'md' | 'lg'; disabled?: boolean; label?: string; class?: string; onchange?: (liked: boolean, count: number) => void; } declare const LikeButton: import("svelte").Component; type LikeButton = ReturnType; export default LikeButton;