export interface StatsPluginConfig { /** Position of the stats overlay */ position?: "top-left" | "top-right" | "bottom-left" | "bottom-right"; /** Which stats to show */ show?: Array<"count" | "mean" | "min" | "max" | "std" | "range">; /** Series ID to compute stats for (default: all) */ seriesId?: string; /** Update on every data change (default: true) */ autoUpdate?: boolean; } export declare const StatsPlugin: import('../..').PluginFactory;