import '@oicl/openbridge-webcomponents/dist/navigation-instruments/graph-mini/graph-mini.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; data?: [number[], number[]]; minY?: number | undefined; maxY?: number | undefined; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcGraphMini: import("svelte").Component<$$ComponentProps, {}, "">; type ObcGraphMini = ReturnType; export default ObcGraphMini;