import { FC } from 'react'; import { IAnnotation } from '../types'; interface CommentPopoverProps { annotation: IAnnotation; onClose: () => void; } export declare const CommentPopover: FC; export {};