import { LoadingIndicatorOptions } from '../../core/loading'; import { ChartPlugin } from '../types'; export interface PluginLoadingConfig extends Partial { /** Auto-show on heavy data operations */ autoShow?: boolean; } /** * VeloPlot Loading Plugin * * Adds sleek loading indicators and progress trackers to the chart. */ export declare function PluginLoading(_config?: PluginLoadingConfig): ChartPlugin; export default PluginLoading;