/// import { IAnnotation } from '../../types/index'; interface EditorProps { annotation: IAnnotation; className?: string; onSubmit: (e: IAnnotation) => void; style?: object; } declare function Editor(props: EditorProps): JSX.Element | null; export default Editor;