interface FollowButtonProps { following?: boolean; size?: 'xs' | 'sm' | 'md'; disabled?: boolean; followLabel?: string; followingLabel?: string; unfollowLabel?: string; class?: string; onchange?: (following: boolean) => void; } declare const FollowButton: import("svelte").Component; type FollowButton = ReturnType; export default FollowButton;