import { UserProfile } from "../types/index.js"; import { SearchResults } from "../types/index.js"; /** * Gets a user's profile * @param username The username of the user * @param requestOptions Request options * @returns A promise that resolves to the user's profile */ declare function getUserProfile(username: string, requestOptions?: { proxyUrl?: string; }): Promise; /** * Gets a paginated list of a user's works * @param username The username of the user * @param page The page number to fetch * @param requestOptions Request options * @returns A promise that resolves to a paginated list of works */ declare function getUserWorks(username: string, page?: number, requestOptions?: { proxyUrl?: string; }): Promise; export { getUserProfile, getUserWorks };