import { BookmarkResults } from '../types/index.js'; /** * Get a user's bookmarks with pagination * @param username The username to get bookmarks for * @param page The page number (default: 1) * @param proxyUrl Optional proxy URL for the request * @returns Promise The user's bookmarks with pagination info */ export declare function getUserBookmarks(username: string, page?: number, proxyUrl?: string): Promise; /** * Get bookmarks for a specific work * @param workId The work ID to get bookmarks for * @param page The page number (default: 1) * @param proxyUrl Optional proxy URL for the request * @returns Promise The work's bookmarks with pagination info */ export declare function getWorkBookmarks(workId: string, page?: number, proxyUrl?: string): Promise;