import { Gauge } from "../types/Gauge"; export declare const initChart: (gauge: Gauge, isFirstRender: boolean) => void; export declare const calculateAngles: (gauge: Gauge) => void; export declare const renderChart: (gauge: Gauge, resize?: boolean) => void; /** * Legacy function kept for backward compatibility during transition * This should eventually be removed as all code migrates to the new coordinate system * @deprecated Use coordinateSystem.calculateGaugeLayout instead */ export declare const calculateRadius: (gauge: Gauge) => void; /** * Legacy function kept for backward compatibility during transition * @deprecated Centering is now handled by coordinateSystem.calculateGaugeCenter */ export declare const centerGraph: (gauge: Gauge) => void; export declare const clearChart: (gauge: Gauge, currentPass?: number) => void;