import '@oicl/openbridge-webcomponents/dist/bars-graphs/area-graph/area-graph.js'; import type { AreaFillMode } from '@oicl/openbridge-webcomponents/dist/bars-graphs/area-graph/area-graph.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; /** Fill rendering mode for area charts. - `'semitransparent'`: 50% alpha fill (default) - `'solid'`: Opaque fill - `'threshold'`: single-series only, falls back to semitransparent for multi-series */ fillMode?: AreaFillMode; /** Stack multi-series datasets vertically on y-axis. Ignored for single-series and threshold fill mode. */ stacked?: boolean; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcAreaGraph: import("svelte").Component<$$ComponentProps, { AreaFillMode: typeof AreaFillMode; }, "">; type ObcAreaGraph = ReturnType; export default ObcAreaGraph;