import { GenericCollection } from './generic.js'; import { NotesBook } from '../book/notes.js'; export declare class NotesCollection extends GenericCollection { get_book_url(resource: string, book: string, format?: 'html' | 'txt'): string; fetch_notes(resource: string, book: string, format?: 'html' | 'txt'): Promise; }