type UseFollowProps = {
    did: string;
    onSuccess: () => void;
    followUri: string;
};
export declare const useFollow: ({ did, onSuccess, followUri }: UseFollowProps) => {
    follow: () => void;
    isPending: boolean;
    unfollow: () => void;
};
export {};
