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