import type { Annotation } from "./types"; declare class AnnotationDatabase { private dbPromise; private getDB; saveAnnotation(annotation: Annotation): Promise; getAnnotation(id: string): Promise; getAnnotationsByPage(pageUrl: string): Promise; getAllAnnotations(): Promise; deleteAnnotation(id: string): Promise; clearAll(): Promise; } export declare const db: AnnotationDatabase; export {};