import { h } from 'preact'; import { SidebarAnnotationEntry, TrackedAnnotation } from '@pdfmergy/plugin-annotation'; interface AnnotationCardProps { entry: SidebarAnnotationEntry; isSelected: boolean; onSelect: () => void; onUpdate: (id: string, contents: string) => void; onDelete: (annotation: TrackedAnnotation) => void; onReply: (inReplyToId: string, contents: string) => void; documentId: string; isReadOnly?: boolean; } export declare const AnnotationCard: ({ entry, isSelected, onSelect, onUpdate, onDelete, onReply, documentId, isReadOnly, }: AnnotationCardProps) => h.JSX.Element | null; export {}; //# sourceMappingURL=annotation-card.d.ts.map