import '@oicl/openbridge-webcomponents/dist/automation/direction-line/direction-line.js'; import type { LineMedium, LineType } from '@oicl/openbridge-webcomponents/dist/automation/index.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; medium?: LineMedium; lineType?: LineType; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcDirectionLine: import("svelte").Component<$$ComponentProps, { LineMedium: typeof LineMedium; LineType: typeof LineType; }, "">; type ObcDirectionLine = ReturnType; export default ObcDirectionLine;