import type { IRectangleOption } from '../base'; import type { ILabelOption } from './i-label-option'; export interface ICommentOption extends IRectangleOption { showComment?: boolean; comment?: ILabelOption; userData?: unknown; }