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