import type { IAnnotator } from './i-annotator'; import type { IAnnotatorOption } from './i-annotator-option'; export interface IAnnotatorFactory { create(option?: IAnnotatorOption): IAnnotator; }