import { IRenderOptions } from '../base/render-options'; import { NDKUser, NDKUserProfile } from '@nostr-dev-kit/ndk'; export interface RenderFollowButtonOptions extends IRenderOptions { isFollowed: boolean; isFollowing: boolean; showAvatar?: boolean; user?: NDKUser | null; profile?: NDKUserProfile | null; customText?: string; } export declare function renderFollowButton({ isLoading, isError, errorMessage, isFollowed, isFollowing, showAvatar, user, profile, customText, }: RenderFollowButtonOptions): string;