import { h } from 'preact'; import { PdfAnnotationObject } from '@pdfmergy/models'; interface CommentProps { annotation: PdfAnnotationObject; onSave: (text: string) => void; onDelete: () => void; isReply?: boolean; documentId: string; isReadOnly?: boolean; } export declare const Comment: ({ annotation, onSave, onDelete, isReply, documentId, isReadOnly, }: CommentProps) => h.JSX.Element; export {}; //# sourceMappingURL=comment.d.ts.map