import { Chapter, ChapterContent, Work } from "../types/index.js"; /** * Get a work by ID * @param workId - The ID of the work to get * @returns {Promise} The work details */ declare function getWork(workId: string, options?: { proxyUrl?: string; }): Promise; /** * Gets a list of chapters for a work * @param workId - The ID of the work * @returns A promise that resolves to an array of chapters */ declare function getChapters(workId: string, options?: { proxyUrl?: string; }): Promise; /** * Gets the content for a specific chapter * @param workId The ID of the work * @param chapterId The ID of the chapter * @returns A promise that resolves to the content of the chapter */ declare function getChapterContent(workId: string, chapterId: string, options?: { proxyUrl?: string; }): Promise; export { getWork, getChapters, getChapterContent };