import { Series } from "../types/index.js"; /** * Gets information and a list of works for a specific series * @param seriesId The ID of the series * @param requestOptions Request options * @returns A promise that resolves to a series object */ declare function getSeries(seriesId: string, requestOptions?: { proxyUrl?: string; }): Promise; export { getSeries };