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