import { SVGExportPluginContext } from './types'; export interface RoiExportRegion { tool: "rectangle" | "circle" | "polygon" | "lasso"; points: Array<{ x: number; y: number; }>; color?: string; fill?: string; } export declare function exportRoiRegions(ctx: SVGExportPluginContext, regions: RoiExportRegion[]): void;