import type { Point } from '../../types'; import type { Annotation, DrawableAnnotation } from '../../types'; interface UseCreatingDrawableAnnotationProps { annotation: Annotation | null; pixelToCanvas: (point: Point) => Point; } declare const useCreatingDrawableAnnotation: ({ annotation, pixelToCanvas, }: UseCreatingDrawableAnnotationProps) => { drawableAnnotation: DrawableAnnotation | null; }; export default useCreatingDrawableAnnotation;