import '@oicl/openbridge-webcomponents/dist/bars-graphs/pie-chart/pie-chart.js'; import type { Priority } from '@oicl/openbridge-webcomponents/dist/navigation-instruments/types.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; data?: { label: string; value: number; children?: { label: string; value: number; }[] | undefined; }[]; colors?: string[]; priority?: Priority; showOuterLabels?: boolean; showUnit?: boolean; sunburst?: boolean; outerLabelUnit?: string; outerLabelMaxLength?: number; outerLabelDecimalPlaces?: number; legend?: boolean; showDebugOverlay?: boolean; fixedHeight?: number; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcPieChart: import("svelte").Component<$$ComponentProps, { Priority: typeof Priority; }, "">; type ObcPieChart = ReturnType; export default ObcPieChart;