import '@oicl/openbridge-webcomponents/dist/bars-graphs/donut-chart/donut-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; }[]; colors?: string[]; priority?: Priority; half?: boolean; showOuterLabels?: boolean; showUnit?: boolean; outerLabelUnit?: string; outerLabelMaxLength?: number; outerLabelDecimalPlaces?: number; centerReadoutLabel?: string; centerReadoutUnit?: string; max?: number; thickness?: number; legend?: boolean; showDebugOverlay?: boolean; fixedHeight?: number; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcDonutChart: import("svelte").Component<$$ComponentProps, { Priority: typeof Priority; }, "">; type ObcDonutChart = ReturnType; export default ObcDonutChart;