import type { DurationMs } from './types';
export interface AgAnimationOptions {
    /** Set to `true` to enable the animation module. */
    enabled?: boolean;
    /** The total duration of the animation for each series on initial load and updates */
    duration?: DurationMs;
}
