import { ButtonProps } from "../Button"; type FollowButtonProps = Omit & { isFollowed: boolean; followCount?: number; longestText?: string; }; export declare const FollowButton: ({ isFollowed, followCount, longestText, loading, ...restProps }: FollowButtonProps) => import("react/jsx-runtime").JSX.Element; export {};