import { OPDSFeed, OPDSEntry } from "opds-feed-parser";
import { CollectionData, BookData } from "./interfaces";
export declare function adapter(data: OPDSFeed | OPDSEntry, url: string): CollectionData | BookData;
export declare function entryToBook(entry: OPDSEntry, feedUrl: string): BookData;
export declare function feedToCollection(feed: OPDSFeed, feedUrl: string): CollectionData;
