import { type Annotation } from '@vue-pdf-viewer/shared'; export default function useAnnotationEvents(): { emitAnnotationCreated: (data: Annotation) => void; emitAnnotationUpdated: (data: Annotation) => void; emitAnnotationDeleted: (data: Annotation) => void; };