import { default as React } from 'react'; import { Annotation as AnnotationType } from '../types'; export interface AnnotationProps { pageNumber: number; scale: number; isAnnotating: boolean; annotations: AnnotationType[]; onAnnotationAdd?: (annotation: AnnotationType) => void; onAnnotationDelete?: (annotationId: string) => void; readOnly?: boolean; } export declare const Annotation: React.FC; export default Annotation;