/* * * * Variable Pie module for Highcharts * * (c) 2010-2026 Highsoft AS * Author: Grzegorz BlachliƄski * * Integration of this software requires a license. * - For commercial use, see www.highcharts.com/license * - For non-commercial, see www.highcharts.com/license-eula * * * */ /* * * * Imports * * */ import type PiePoint from '../Pie/PiePoint'; import type VariablePiePointOptions from './VariablePiePointOptions'; import type VariablePieSeries from './VariablePieSeries'; /* * * * Class * * */ declare class VariablePiePoint extends PiePoint { public options: VariablePiePointOptions; public series: VariablePieSeries; } /* * * * Default Export * * */ export default VariablePiePoint;