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