import type { ColorSchemeName } from '../colors'; import type { CompositionType } from './'; import type { SVGAttributes } from 'svelte/elements'; type $$ComponentProps = SVGAttributes & { composition: CompositionType; size?: number; stroke_width?: number; inner_radius?: number; show_labels?: boolean; show_percentages?: boolean; show_amounts?: boolean; color_scheme?: ColorSchemeName; svg_node?: SVGSVGElement | null; }; declare const PieChart: import("svelte").Component<$$ComponentProps, {}, "svg_node">; type PieChart = ReturnType; export default PieChart;