import { SVGExportPluginContext } from './types'; export declare function exportWatermark(ctx: SVGExportPluginContext, text: string, options?: { opacity?: number; rotation?: number; color?: string; }): void; export declare function exportGridHighlight(ctx: SVGExportPluginContext, bands: Array<{ axis: "x" | "y"; min: number; max: number; color?: string; }>): void;