import type { Chart, Plugin } from 'chart.js'; interface OutlierBandOptions { value?: number; color?: string; } /** * Shades the region of a scatter chart above the outlier threshold. */ export declare class OutlierBandPlugin implements Plugin { id: string; beforeDatasetsDraw(chart: Chart, _: any, pluginOptions: OutlierBandOptions): void; } export {}; //# sourceMappingURL=OutlierBandPlugin.d.ts.map