import type { User } from "../../../interfaces/models/User";
import { PaginatedResponse } from "../../../interfaces/PaginatedResponse";
export interface FollowerWithFollowInfo {
    followId: string;
    user: User;
    followedAt: string;
}
export interface FetchFollowersParams {
    page?: number;
    limit?: number;
}
declare function useFetchFollowers(): (params?: FetchFollowersParams) => Promise<PaginatedResponse<FollowerWithFollowInfo>>;
export default useFetchFollowers;
