import Base, { IAnnotationBaseProps } from './base'; import { HtmlAnnotationOption } from '../../interface'; type BaseProps = Omit; interface HtmlAnnotationProps extends HtmlAnnotationOption, BaseProps { } export default class Html extends Base { annotationType: string; } export {};